Theme Name: DMIndex
Theme URI: https://example.com/dmindex
Author: Your Name
Author URI: https://example.com
Description: AI-focused, professional, responsive marketing agency theme for DMIndex. Dark, futuristic UI with yellow CTAs and red/blue AI accents.
Version: 4.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dmindex
*/

:root {
/* Core neutrals /
--dm-bg: #020617; / main background (near-black) */
--dm-surface: #020617;
--dm-surface-soft: #020617;
--dm-heading: #f9fafb;
--dm-body: #e5e7eb;
--dm-muted: #94a3b8;
--dm-muted-soft: #64748b;

text

/* Brand blue / cyan */
--dm-blue: #22d3ee;
--dm-blue-strong: #0ea5e9;
--dm-blue-soft: rgba(56, 189, 248, 0.18);

/* Brand red */
--dm-red: #f97373;
--dm-red-strong: #fb7185;
--dm-red-soft: rgba(248, 113, 113, 0.15);

/* Button yellow */
--dm-yellow: #facc15;
--dm-yellow-strong: #eab308;
--dm-yellow-soft: #fef9c3;

--dm-border: rgba(148, 163, 184, 0.4);
--dm-border-soft: rgba(148, 163, 184, 0.2);

/* Surfaces */
--dm-card: rgba(15, 23, 42, 0.92);
--dm-header-bg: rgba(15, 23, 42, 0.92);

/* Typography */
--dm-font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

/* Shadows */
--dm-shadow-soft: 0 22px 60px rgba(15, 23, 42, 0.7);
--dm-shadow-subtle: 0 14px 40px rgba(15, 23, 42, 0.6);

/* Transitions */
--dm-transition-fast: 0.15s ease-out;
--dm-transition-med: 0.25s ease-out;
}

*,
*::before,
*::after {
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
font-size: 16px;
}

body {
margin: 0;
font-family: var(--dm-font-main);
background-color: var(--dm-bg);
background-image:
radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.18) 0, transparent 55%),
radial-gradient(circle at 100% 0%, rgba(248, 113, 113, 0.14) 0, transparent 55%),
radial-gradient(circle at 50% 120%, rgba(37, 99, 235, 0.25) 0, transparent 60%);
color: var(--dm-body);
line-height: 1.7;
-webkit-font-smoothing: antialiased;
}

/* Global layout */

.site {
min-height: 100vh;
display: flex;
flex-direction: column;
}

.site-main {
flex: 1 0 auto;
}

.site-footer {
flex-shrink: 0;
}

.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 1.75rem;
}

/* Typography */

h1, h2, h3, h4, h5 {
margin: 0 0 0.7em;
font-weight: 700;
letter-spacing: 0.01em;
color: var(--dm-heading);
}

h1 {
font-size: clamp(2.4rem, 3.1vw, 3rem);
line-height: 1.1;
}

h2 {
font-size: 1.9rem;
line-height: 1.18;
}

h3 {
font-size: 1.25rem;
line-height: 1.3;
}

p {
margin: 0 0 1.1em;
color: var(--dm-body);
font-size: 1rem;
}

a {
color: var(--dm-blue);
text-decoration: none;
transition: color var(--dm-transition-fast), opacity var(--dm-transition-fast), box-shadow var(--dm-transition-fast), transform var(--dm-transition-fast);
}

a:hover,
a:focus {
color: var(--dm-red-strong);
}

/* Focus styles */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
outline: 2px solid var(--dm-blue-strong);
outline-offset: 2px;
}

/* Buttons */

.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.9rem 1.9rem;
border-radius: 999px;
border: 1px solid transparent;
font-weight: 600;
font-size: 0.95rem;
letter-spacing: 0.08em;
text-transform: uppercase;
cursor: pointer;
transition:
background var(--dm-transition-fast),
color var(--dm-transition-fast),
transform 0.1s ease-out,
box-shadow var(--dm-transition-med),
border-color var(--dm-transition-fast);
}

/* Primary = yellow */
.btn-primary {
background: radial-gradient(circle at 10% 0, #fef9c3 0, var(--dm-yellow) 40%, var(--dm-yellow-strong) 100%);
color: #0f172a;
box-shadow: 0 16px 40px rgba(250, 204, 21, 0.45);
}

.btn-primary:hover {
transform: translateY(-1px);
box-shadow: var(--dm-shadow-soft);
border-color: #facc15;
}

.btn-primary:active {
transform: translateY(0);
box-shadow: 0 12px 24px rgba(202, 138, 4, 0.35);
}

/* Outline = blue glass */
.btn-outline {
background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9));
color: var(--dm-blue);
border-color: rgba(56, 189, 248, 0.4);
box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 16px 30px rgba(15, 23, 42, 0.7);
}

.btn-outline:hover {
border-color: var(--dm-blue-strong);
color: #e0f2fe;
background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.3), rgba(15, 23, 42, 0.95));
}

.btn-outline:active {
background: rgba(15, 23, 42, 0.95);
}

/* Header / Navigation */

.site-header {
position: sticky;
top: 0;
z-index: 50;
backdrop-filter: blur(22px);
background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.88));
border-bottom: 1px solid rgba(148, 163, 184, 0.5);
box-shadow: 0 14px 40px rgba(15, 23, 42, 0.9);
}

.site-header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 76px;
}

.site-branding {
display: flex;
align-items: center;
gap: 0.7rem;
}

/* Holographic logo */
.logo-mark {
width: 36px;
height: 36px;
border-radius: 12px;
background:
radial-gradient(circle at 30% 10%, rgba(250, 204, 21, 0.5) 0, transparent 40%),
conic-gradient(from 220deg, var(--dm-blue) 0deg, var(--dm-red) 140deg, var(--dm-blue-strong) 360deg);
box-shadow:
0 0 0 1px rgba(15, 23, 42, 0.8),
0 0 26px rgba(56, 189, 248, 0.75);
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1rem;
font-weight: 800;
color: #f9fafb;
}

.logo-mark span {
transform: translateY(1px);
}

.site-title {
font-size: 1.02rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.18em;
display: block;
color: var(--dm-body);
}

.site-description {
font-size: 0.7rem;
color: var(--dm-muted);
text-transform: uppercase;
letter-spacing: 0.22em;
}

.main-navigation {
display: flex;
align-items: center;
gap: 1.7rem;
}

.main-navigation ul {
list-style: none;
margin: 0;
padding: 0;
}

.main-navigation > ul {
display: flex;
gap: 1.7rem;
align-items: center;
}

.main-navigation li {
position: relative;
}

/* Top-level menu */
.main-navigation > ul > li > a {
font-size: 0.86rem;
text-transform: uppercase;
letter-spacing: 0.19em;
color: #e5e7eb;
padding: 0.4rem 0;
position: relative;
}

/* Active/hover underline in blue/red */
.main-navigation > ul > li > a::after {
content: "";
position: absolute;
left: 0;
bottom: -0.16rem;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--dm-blue), var(--dm-red));
transition: width var(--dm-transition-med);
border-radius: 999px;
}

.main-navigation > ul > li:hover > a::after,
.main-navigation .current-menu-item > a::after {
width: 100%;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
color: #f9fafb;
}

.header-cta {
display: flex;
align-items: center;
gap: 0.8rem;
}

/* Dropdown submenu (desktop) */

.main-navigation ul.sub-menu {
position: absolute;
top: calc(100% + 0.35rem);
left: 0;
background: radial-gradient(circle at top, rgba(30, 64, 175, 0.8), rgba(15, 23, 42, 0.98));
border-radius: 12px;
border: 1px solid rgba(148, 163, 184, 0.6);
padding: 0.55rem 0;
min-width: 220px;
box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
display: none;
flex-direction: column;
gap: 0;
z-index: 40;
opacity: 0;
transform: translateY(8px);
pointer-events: none;
transition:
opacity var(--dm-transition-med),
transform var(--dm-transition-med);
}

.main-navigation li:hover > ul.sub-menu {
display: flex;
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}

.main-navigation ul.sub-menu li a {
display: block;
padding: 0.45rem 1.1rem;
font-size: 0.82rem;
letter-spacing: 0.12em;
color: #e5e7eb;
text-transform: uppercase;
white-space: nowrap;
}

.main-navigation ul.sub-menu li a:hover {
background: rgba(15, 23, 42, 0.9);
color: var(--dm-blue);
}

/* Parent item arrow */
.main-navigation .menu-item-has-children > a::after {
content: "▾";
margin-left: 0.35rem;
font-size: 0.6rem;
}

/* Mobile nav toggle */

.menu-toggle {
display: none;
background: none;
border: none;
color: #e5e7eb;
cursor: pointer;
padding: 0.4rem;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
display: block;
width: 22px;
height: 2px;
background: #e5e7eb;
position: relative;
transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
content: "";
position: absolute;
left: 0;
}

.menu-toggle span::before {
top: -6px;
}

.menu-toggle span::after {
top: 6px;
}

.site-header.nav-open .menu-toggle span {
transform: rotate(45deg);
}

.site-header.nav-open .menu-toggle span::before {
top: 0;
transform: rotate(0deg);
}

.site-header.nav-open .menu-toggle span::after {
top: 0;
opacity: 0;
}

/* Hero section */

.hero {
padding: 4.5rem 0 3.7rem;
position: relative;
overflow: hidden;
}

.hero::before {
content: "";
position: absolute;
inset: 0;
background-image:
linear-gradient(120deg, rgba(148, 163, 184, 0.2) 1px, transparent 1px),
linear-gradient(210deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
background-size: 260px 260px;
opacity: 0.18;
mix-blend-mode: soft-light;
pointer-events: none;
}

.hero-inner {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
gap: 3.8rem;
align-items: center;
}

.hero-kicker {
text-transform: uppercase;
letter-spacing: 0.26em;
color: var(--dm-blue);
font-size: 0.76rem;
font-weight: 600;
margin-bottom: 1.1rem;
}

.hero-title {
margin-bottom: 1.1rem;
}

.hero-title span.accent {
background: linear-gradient(135deg, var(--dm-blue), var(--dm-red-strong));
-webkit-background-clip: text;
color: transparent;
}

.hero-subtitle {
font-size: 1.02rem;
max-width: 36rem;
margin-bottom: 1.5rem;
color: var(--dm-muted);
}

.hero-badges {
display: flex;
flex-wrap: wrap;
gap: 0.8rem;
margin-bottom: 1.7rem;
}

/* Tech badges */
.badge {
display: inline-flex;
align-items: center;
padding: 0.4rem 1.05rem;
border-radius: 999px;
border: 1px solid rgba(148, 163, 184, 0.6);
background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 0.96));
font-size: 0.74rem;
letter-spacing: 0.2em;
text-transform: uppercase;
color: #e5e7eb;
gap: 0.4rem;
}

.badge-dot {
width: 7px;
height: 7px;
border-radius: 999px;
background: radial-gradient(circle, var(--dm-yellow), var(--dm-red-strong));
box-shadow: 0 0 12px rgba(250, 204, 21, 0.7);
}

.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 0.9rem;
margin-bottom: 1.9rem;
}

.hero-meta {
display: flex;
flex-wrap: wrap;
gap: 1.4rem;
font-size: 0.82rem;
color: var(--dm-muted);
}

.hero-meta-item strong {
display: block;
color: var(--dm-heading);
font-size: 1.02rem;
}

/* Hero side card */

.hero-aside {
background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.98));
border-radius: 22px;
padding: 1.6rem 1.7rem;
border: 1px solid var(--dm-border);
box-shadow: var(--dm-shadow-soft);
position: relative;
overflow: hidden;
}

.hero-aside::after {
content: "";
position: absolute;
inset: -40%;
opacity: 0.18;
background: conic-gradient(from 240deg, rgba(56, 189, 248, 0.7), transparent 160deg, rgba(248, 113, 113, 0.5), transparent 320deg);
mix-blend-mode: screen;
}

.hero-aside-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1.05rem;
position: relative;
z-index: 1;
}

.hero-aside-title {
font-size: 0.92rem;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--dm-muted);
}

.hero-aside-metric {
text-align: right;
}

.hero-aside-metric span {
display: block;
font-size: 0.72rem;
color: var(--dm-muted);
text-transform: uppercase;
letter-spacing: 0.22em;
}

.hero-aside-metric strong {
font-size: 1.6rem;
color: var(--dm-heading);
}

.hero-aside-graph {
margin-top: 0.7rem;
padding-top: 0.9rem;
border-top: 1px dashed rgba(148, 163, 184, 0.6);
position: relative;
z-index: 1;
}

.hero-aside-bars {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0.55rem;
height: 96px;
align-items: flex-end;
}

.hero-aside-bar {
position: relative;
border-radius: 999px;
background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(30, 64, 175, 0.4));
overflow: hidden;
}

.hero-aside-bar-fill {
position: absolute;
inset-inline: 0.12rem;
bottom: 0.12rem;
border-radius: inherit;
background: linear-gradient(180deg, var(--dm-blue), var(--dm-red-strong));
}

.hero-aside-labels {
display: flex;
justify-content: space-between;
margin-top: 0.65rem;
font-size: 0.72rem;
color: var(--dm-muted);
}

.hero-aside-footer {
margin-top: 1.1rem;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.78rem;
color: var(--dm-muted);
position: relative;
z-index: 1;
}

.hero-aside-status {
display: inline-flex;
align-items: center;
gap: 0.38rem;
}

.hero-aside-status-dot {
width: 7px;
height: 7px;
border-radius: 999px;
background: radial-gradient(circle, #22c55e, #15803d);
box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

/* Sections */

.section {
padding: 3.7rem 0;
background: transparent;
}

.section:nth-of-type(odd) {
background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
}

.section:nth-of-type(even) {
background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 1));
}

.section-header {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: 1.7rem;
margin-bottom: 2.2rem;
}

.section-kicker {
text-transform: uppercase;
letter-spacing: 0.24em;
color: var(--dm-blue);
font-size: 0.76rem;
font-weight: 600;
margin-bottom: 0.5rem;
}

.section-title {
font-size: 1.85rem;
}

.section-description {
max-width: 410px;
font-size: 0.95rem;
color: var(--dm-muted);
}

/* Services */

.services-grid {
display: grid;
grid-template-columns: repeat(5, minmax(0, 1fr));
gap: 1.1rem;
}

.service-card {
background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.96));
border-radius: 18px;
padding: 1.3rem 1.1rem;
border: 1px solid var(--dm-border);
position: relative;
overflow: hidden;
transition:
transform var(--dm-transition-fast),
box-shadow var(--dm-transition-med),
border-color var(--dm-transition-fast),
background var(--dm-transition-fast);
}

.service-card::before {
content: "";
position: absolute;
inset-inline: 0;
top: 0;
height: 3px;
background: linear-gradient(90deg, var(--dm-blue), var(--dm-red-strong));
opacity: 0;
transform: translateY(-100%);
transition:
opacity var(--dm-transition-med),
transform var(--dm-transition-med);
}

.service-card:hover {
transform: translateY(-4px);
border-color: rgba(56, 189, 248, 0.7);
background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.25), rgba(15, 23, 42, 0.98));
box-shadow: var(--dm-shadow-soft);
}

.service-card:hover::before {
opacity: 1;
transform: translateY(0);
}

.service-icon {
width: 36px;
height: 36px;
border-radius: 999px;
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(15, 23, 42, 0.9);
border: 1px solid rgba(56, 189, 248, 0.5);
color: var(--dm-blue);
font-size: 1.1rem;
margin-bottom: 0.9rem;
}

.service-title {
font-size: 1.02rem;
margin-bottom: 0.45rem;
color: var(--dm-heading);
}

.service-text {
font-size: 0.84rem;
color: var(--dm-muted);
}

.service-meta {
margin-top: 0.9rem;
display: flex;
justify-content: space-between;
font-size: 0.76rem;
color: var(--dm-muted-soft);
}

/* Process / steps */

.process-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.25rem;
}

.process-card {
background: rgba(15, 23, 42, 0.96);
border-radius: 18px;
padding: 1.5rem 1.4rem;
border: 1px solid var(--dm-border);
position: relative;
box-shadow: var(--dm-shadow-subtle);
}

.process-step {
font-size: 0.68rem;
text-transform: uppercase;
letter-spacing: 0.25em;
color: var(--dm-blue);
margin-bottom: 0.5rem;
}

.process-title {
font-size: 1rem;
margin-bottom: 0.7rem;
color: var(--dm-heading);
}

.process-list {
list-style: none;
padding: 0;
margin: 0;
font-size: 0.84rem;
color: var(--dm-muted);
}

.process-list li {
margin-bottom: 0.45rem;
}

/* Cards / Case studies / generic */

.cards-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.2rem;
}

.card {
background: rgba(15, 23, 42, 0.96);
border-radius: 18px;
border: 1px solid var(--dm-border);
overflow: hidden;
display: flex;
flex-direction: column;
transition:
transform var(--dm-transition-fast),
box-shadow var(--dm-transition-med),
border-color var(--dm-transition-fast);
}

.card:hover {
transform: translateY(-4px);
border-color: rgba(56, 189, 248, 0.7);
box-shadow: var(--dm-shadow-soft);
}

.card-thumb {
position: relative;
padding-bottom: 58%;
background: radial-gradient(circle at center, rgba(56, 189, 248, 0.35), rgba(15, 23, 42, 1));
}

.card-thumb img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}

.card-body {
padding: 1.2rem 1.1rem 1.15rem;
flex: 1;
}

.card-meta {
font-size: 0.72rem;
color: var(--dm-muted-soft);
text-transform: uppercase;
letter-spacing: 0.18em;
margin-bottom: 0.45rem;
}

.card-title {
font-size: 1.02rem;
margin-bottom: 0.55rem;
color: var(--dm-heading);
}

.card-excerpt {
font-size: 0.85rem;
color: var(--dm-muted);
}

.card-footer {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.78rem;
padding: 0 1.1rem 1.1rem;
color: var(--dm-muted-soft);
}

/* CTA section */

.cta-section {
padding: 3.2rem 0 3.7rem;
}

.cta-box {
border-radius: 24px;
border: 1px solid rgba(56, 189, 248, 0.5);
background: radial-gradient(circle at 8% 0, rgba(56, 189, 248, 0.28), rgba(15, 23, 42, 0.98) 55%, rgba(248, 113, 113, 0.3) 100%);
padding: 2.4rem 2.2rem;
display: grid;
grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
gap: 2.3rem;
align-items: center;
box-shadow: var(--dm-shadow-soft);
}

.cta-title {
font-size: 1.85rem;
margin-bottom: 0.8rem;
color: var(--dm-heading);
}

.cta-text {
font-size: 0.98rem;
color: #e0f2fe;
max-width: 32rem;
}

.cta-actions {
display: flex;
flex-wrap: wrap;
gap: 0.9rem;
margin-top: 1.1rem;
}

.cta-side {
font-size: 0.86rem;
color: #c7d2fe;
}

/* Footer */

.site-footer {
padding: 2.6rem 0 1.6rem;
border-top: 1px solid rgba(148, 163, 184, 0.4);
background: radial-gradient(circle at top, #020617, #020617);
color: #e5e7eb;
}

.footer-main {
display: grid;
grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1fr));
gap: 2.1rem;
margin-bottom: 1.8rem;
}

.footer-brand-text {
font-size: 0.92rem;
color: var(--dm-muted-soft);
max-width: 24rem;
}

.footer-heading {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--dm-muted-soft);
margin-bottom: 0.95rem;
}

.footer-menu,
.footer-contact {
list-style: none;
padding: 0;
margin: 0;
font-size: 0.88rem;
}

.footer-menu li,
.footer-contact li {
margin-bottom: 0.42rem;
}

.footer-menu a {
color: #e5e7eb;
}

.footer-menu a:hover {
color: var(--dm-blue);
}

.footer-contact a {
color: #e5e7eb;
}

.footer-bottom {
border-top: 1px solid rgba(15, 23, 42, 0.9);
padding-top: 0.95rem;
font-size: 0.76rem;
color: var(--dm-muted-soft);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 0.7rem;
}

/* Basic WP content styles */

.entry-content {
max-width: 760px;
margin: 0 auto;
padding: 2.7rem 0 3.1rem;
font-size: 1rem;
}

.entry-content img {
max-width: 100%;
height: auto;
border-radius: 12px;
}

.entry-header {
padding: 2.1rem 0 1.2rem;
text-align: center;
}

.entry-title {
font-size: 2rem;
}

.entry-meta {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--dm-muted);
}

/* Blog index / archives */

.blog-list {
padding: 3.7rem 0;
}

.blog-list-header {
margin-bottom: 2.2rem;
}

/* Blog grid */
.blog-listing {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.35rem;
}

/* Pagination */

.pagination {
margin-top: 2.2rem;
display: flex;
justify-content: center;
gap: 0.45rem;
font-size: 0.88rem;
}

.pagination a,
.pagination span {
padding: 0.42rem 0.85rem;
border-radius: 999px;
border: 1px solid var(--dm-border-soft);
background: rgba(15, 23, 42, 0.9);
color: var(--dm-body);
}

.pagination .current {
background: var(--dm-blue);
border-color: var(--dm-blue);
color: #0f172a;
}

/* Forms */

input,
textarea,
select {
width: 100%;
background: rgba(15, 23, 42, 0.9);
border-radius: 999px;
border: 1px solid var(--dm-border);
padding: 0.8rem 0.95rem;
color: var(--dm-body);
font-family: inherit;
font-size: 0.92rem;
}

textarea {
border-radius: 16px;
min-height: 140px;
resize: vertical;
}

input::placeholder,
textarea::placeholder {
color: var(--dm-muted-soft);
}

input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: var(--dm-blue-strong);
box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.6);
}

/* Responsive */

@media (max-width: 1200px) {
.container {
padding: 0 1.5rem;
}
}

@media (max-width: 1024px) {
.hero-inner {
grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
gap: 2.5rem;
}