/*
Theme Name: SID3KICK
Theme URI: https://sid3kick.app
Author: codedatda.casa
Author URI: https://codedatda.casa
Description: One-page marketing theme for SID3KICK — the on-device-first AI life-capture assistant. Dark "signal" aesthetic with a cursor-reactive canvas field, matching the app's own Antonio / Chakra Petch / IBM Plex Sans type stack and cyan/amber palette.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 8.0
License: Proprietary
Text Domain: sid3kick
*/

/* ==========================================================================
   0. Tokens
   ========================================================================== */

:root {
	/* Palette — lifted from the app's own Compose theme (ui/theme/Color.kt) */
	--bg:            #07090e;
	--bg-2:          #0b0e14;
	--surface:       #11151f;
	--surface-2:     #1a2030;
	--line:          #262c3a;
	--line-2:        #3a4152;
	--text:          #e7eaf2;
	--muted:         #aeb6c7;
	--muted-2:       #7c8598;

	--cyan:          #4fd8eb;
	--cyan-deep:     #12414a;
	--amber:         #ffb454;
	--violet:        #b388ff;
	--emerald:       #35d48c;
	--rose:          #f07178;

	--on-cyan:       #00252a;
	--on-amber:      #2e1c00;

	/* Type */
	--font-display:  "Antonio", "Chakra Petch", ui-sans-serif, sans-serif;
	--font-ui:       "Chakra Petch", ui-monospace, monospace;
	--font-body:     "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;

	/* Space + shape */
	--maxw:          1180px;
	--gutter:        clamp(1.25rem, 4vw, 2.5rem);
	--r-sm:          8px;
	--r:             14px;
	--r-lg:          22px;

	--section-y:     clamp(4.5rem, 10vw, 8.5rem);

	/* Motion */
	--ease:          cubic-bezier(.22, .61, .36, 1);
}

/* ==========================================================================
   1. Reset / base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	/* offset for the sticky header when jumping to an anchor */
	scroll-padding-top: 96px;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	font-feature-settings: "kern", "liga";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img, svg, video, canvas { max-width: 100%; height: auto; display: block; }

a { color: var(--cyan); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: #8ce8f5; }

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: .005em;
	text-transform: uppercase;
	margin: 0 0 .5em;
	text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .4em; }

code, kbd {
	font-family: var(--font-ui);
	font-size: .9em;
	background: var(--surface-2);
	border: 1px solid var(--line);
	border-radius: 5px;
	padding: .12em .42em;
	color: var(--cyan);
}

hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }

::selection { background: var(--cyan); color: var(--on-cyan); }

:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 3px;
	border-radius: 4px;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--cyan);
	color: var(--on-cyan);
	padding: .8rem 1.2rem;
	font-family: var(--font-ui);
	font-weight: 700;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	padding: 0; margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ==========================================================================
   2. Layout primitives
   ========================================================================== */

.container {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--narrow { max-width: 820px; }

.section {
	position: relative;
	padding-block: var(--section-y);
}

.section--alt {
	background:
		linear-gradient(180deg, transparent, rgba(17, 21, 31, .72) 12%, rgba(17, 21, 31, .72) 88%, transparent);
}

.section-head {
	max-width: 720px;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	font-family: var(--font-ui);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--cyan);
	margin-bottom: 1rem;
}
.eyebrow::before {
	content: "";
	width: 26px; height: 1px;
	background: currentColor;
	opacity: .7;
}
.section-head--center .eyebrow::after {
	content: "";
	width: 26px; height: 1px;
	background: currentColor;
	opacity: .7;
}

.section-title {
	font-size: clamp(2rem, 5.2vw, 3.4rem);
	margin-bottom: .55rem;
}

.section-sub {
	color: var(--muted);
	font-size: clamp(1rem, 1.8vw, 1.15rem);
	margin-bottom: 0;
}

.lede {
	font-size: clamp(1.05rem, 2.1vw, 1.3rem);
	color: var(--muted);
	line-height: 1.62;
}

/* ==========================================================================
   3. Interactive background field
   ========================================================================== */

.field {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	/* the canvas paints its own transparent background over this gradient */
	background:
		radial-gradient(1100px 620px at 78% -8%,  rgba(79, 216, 235, .16), transparent 62%),
		radial-gradient(900px  560px at 10% 8%,   rgba(179, 136, 255, .13), transparent 60%),
		radial-gradient(1000px 700px at 50% 108%, rgba(255, 180, 84, .09),  transparent 62%),
		linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 45%, var(--bg) 100%);
}

.field canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Fine scanline / grid texture over the whole page — cheap, no JS. */
.field::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(79, 216, 235, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(79, 216, 235, .035) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
	-webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 78%);
	opacity: .55;
}

.site-header, .site-main, .site-footer { position: relative; z-index: 1; }

/* ==========================================================================
   4. Header / nav
   ========================================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(7, 9, 14, .62);
	border-bottom: 1px solid transparent;
	transition: background .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-stuck {
	background: rgba(7, 9, 14, .9);
	border-bottom-color: var(--line);
}

.nav {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 72px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--text);
	margin-right: auto;
	white-space: nowrap;
}
.brand:hover { color: var(--text); }
.brand-mark {
	display: grid;
	place-items: center;
	width: 34px; height: 34px;
	border-radius: 10px;
	background: linear-gradient(145deg, var(--cyan-deep), var(--surface-2));
	border: 1px solid rgba(79, 216, 235, .45);
	color: var(--cyan);
	box-shadow: 0 0 22px rgba(79, 216, 235, .25);
	flex: 0 0 auto;
}
.brand em {
	font-style: normal;
	color: var(--cyan);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-links a {
	font-family: var(--font-ui);
	font-size: .8rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
	position: relative;
	padding-block: .35rem;
}
.nav-links a::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 0; height: 1px;
	background: var(--cyan);
	transition: width .22s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: .6rem; }

.nav-toggle {
	display: none;
	background: none;
	border: 1px solid var(--line-2);
	border-radius: var(--r-sm);
	color: var(--text);
	padding: .5rem;
	cursor: pointer;
}

.mobile-menu {
	display: none;
	border-top: 1px solid var(--line);
	background: rgba(7, 9, 14, .97);
	padding: 1rem var(--gutter) 1.5rem;
}
.mobile-menu.is-open { display: block; }
.mobile-menu .nav-links {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}
.mobile-menu .nav-links a {
	display: block;
	padding: .85rem 0;
	border-bottom: 1px solid var(--line);
	font-size: .9rem;
}
.mobile-menu .btn { width: 100%; margin-top: 1.1rem; }

/* ==========================================================================
   5. Buttons + chips
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55rem;
	font-family: var(--font-ui);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	padding: .85rem 1.5rem;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .18s var(--ease), box-shadow .22s var(--ease),
	            background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
	background: linear-gradient(135deg, var(--cyan), #37bcd0);
	color: var(--on-cyan);
	box-shadow: 0 8px 30px rgba(79, 216, 235, .28);
}
.btn--primary:hover {
	color: var(--on-cyan);
	box-shadow: 0 12px 40px rgba(79, 216, 235, .42);
}

.btn--amber {
	background: linear-gradient(135deg, var(--amber), #e89c38);
	color: var(--on-amber);
	box-shadow: 0 8px 30px rgba(255, 180, 84, .24);
}
.btn--amber:hover { color: var(--on-amber); box-shadow: 0 12px 40px rgba(255, 180, 84, .38); }

.btn--ghost {
	background: rgba(26, 32, 48, .5);
	border-color: var(--line-2);
	color: var(--text);
}
.btn--ghost:hover {
	border-color: var(--cyan);
	color: var(--cyan);
	background: rgba(18, 65, 74, .35);
}

.btn--sm { padding: .6rem 1.1rem; font-size: .74rem; }

.chip {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-family: var(--font-ui);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
	background: rgba(26, 32, 48, .55);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: .42rem .9rem;
}
.chip svg { color: var(--cyan); flex: 0 0 auto; }
.chip--live { color: var(--emerald); border-color: rgba(53, 212, 140, .4); }
.chip--live svg { color: var(--emerald); }
.chip--soon { color: var(--amber); border-color: rgba(255, 180, 84, .35); }
.chip--soon svg { color: var(--amber); }

/* ==========================================================================
   6. Hero
   ========================================================================== */

.hero {
	position: relative;
	padding-top: clamp(3.5rem, 9vw, 6.5rem);
	padding-bottom: clamp(3.5rem, 8vw, 6rem);
	min-height: min(88vh, 900px);
	display: flex;
	align-items: center;
}

.hero-inner { width: 100%; }

.hero-chips {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem;
	margin-bottom: 1.8rem;
}

.hero-title {
	font-size: clamp(3.4rem, 13vw, 9.5rem);
	line-height: .86;
	letter-spacing: -.01em;
	margin-bottom: 1.2rem;
	background: linear-gradient(178deg, #ffffff 8%, var(--cyan) 58%, #2b93a4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 34px rgba(79, 216, 235, .3));
}
.hero-title .num { color: var(--amber); -webkit-text-fill-color: var(--amber); }

.hero-tagline {
	font-family: var(--font-ui);
	font-size: clamp(.95rem, 2.4vw, 1.35rem);
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 1.6rem;
}

.hero-lede {
	max-width: 62ch;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
	color: var(--muted);
	margin-bottom: 2.2rem;
}
.hero-lede strong { color: var(--text); font-weight: 600; }

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .85rem;
	align-items: center;
	margin-bottom: 2.6rem;
}

.hero-note {
	font-family: var(--font-ui);
	font-size: .78rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted-2);
}

/* Marquee-ish signal strip under the hero */
.hero-strip {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
}
.hero-strip div {
	background: rgba(11, 14, 20, .82);
	padding: 1.15rem 1.25rem;
}
.hero-strip dt {
	font-family: var(--font-ui);
	font-size: .68rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--muted-2);
	margin-bottom: .3rem;
}
.hero-strip dd {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.5rem;
	text-transform: uppercase;
	color: var(--cyan);
	line-height: 1.1;
}
.hero-strip dd small {
	display: block;
	font-family: var(--font-body);
	font-size: .78rem;
	text-transform: none;
	letter-spacing: 0;
	color: var(--muted);
	margin-top: .2rem;
	line-height: 1.4;
}

/* ==========================================================================
   7. Cards / grids
   ========================================================================== */

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
	position: relative;
	background: linear-gradient(160deg, rgba(26, 32, 48, .62), rgba(11, 14, 20, .78));
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 1.7rem 1.6rem;
	overflow: hidden;
	transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(140deg, rgba(79, 216, 235, .55), transparent 42%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite: exclude;
	opacity: 0;
	transition: opacity .3s var(--ease);
	pointer-events: none;
}
.card:hover {
	transform: translateY(-4px);
	border-color: var(--line-2);
	box-shadow: 0 18px 50px rgba(0, 0, 0, .45);
}
.card:hover::before { opacity: 1; }

.card-icon {
	display: grid;
	place-items: center;
	width: 46px; height: 46px;
	border-radius: 13px;
	background: rgba(18, 65, 74, .5);
	border: 1px solid rgba(79, 216, 235, .3);
	color: var(--cyan);
	margin-bottom: 1.1rem;
}
.card--amber .card-icon {
	background: rgba(74, 52, 20, .5);
	border-color: rgba(255, 180, 84, .32);
	color: var(--amber);
}
.card--violet .card-icon {
	background: rgba(62, 46, 58, .55);
	border-color: rgba(179, 136, 255, .32);
	color: var(--violet);
}

.card h3 {
	font-size: 1.22rem;
	letter-spacing: .02em;
	margin-bottom: .55rem;
}
.card p {
	color: var(--muted);
	font-size: .96rem;
	line-height: 1.62;
	margin-bottom: 0;
}
.card p + p { margin-top: .7rem; }

/* Pipeline (how it works) */
.pipeline {
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.25rem;
}
.pipeline .card { padding-top: 2.6rem; }
.pipeline .card::after {
	counter-increment: step;
	content: "0" counter(step);
	position: absolute;
	top: 1.1rem; right: 1.3rem;
	font-family: var(--font-display);
	font-size: 2.6rem;
	line-height: 1;
	color: rgba(231, 234, 242, .07);
}

/* ==========================================================================
   8. Pricing
   ========================================================================== */

.price-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	align-items: start;
}

.price-card {
	position: relative;
	background: linear-gradient(165deg, rgba(26, 32, 48, .7), rgba(11, 14, 20, .85));
	border: 1px solid var(--line-2);
	border-radius: var(--r-lg);
	padding: 2rem 1.8rem;
}
.price-card--feature {
	border-color: rgba(79, 216, 235, .5);
	box-shadow: 0 0 0 1px rgba(79, 216, 235, .12), 0 22px 60px rgba(0, 0, 0, .5);
}
.price-card--feature::after {
	content: "At launch";
	position: absolute;
	top: -.75rem; left: 1.8rem;
	font-family: var(--font-ui);
	font-size: .66rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	background: var(--cyan);
	color: var(--on-cyan);
	padding: .28rem .8rem;
	border-radius: 999px;
}

.price-kicker {
	font-family: var(--font-ui);
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--muted-2);
	margin-bottom: .8rem;
}

.price-figure {
	display: flex;
	align-items: baseline;
	gap: .35rem;
	font-family: var(--font-display);
	margin-bottom: .3rem;
}
.price-figure .amount {
	font-size: clamp(3rem, 7vw, 4.2rem);
	line-height: 1;
	color: var(--cyan);
}
.price-figure .amount--plus { color: var(--amber); }
.price-figure .period {
	font-family: var(--font-ui);
	font-size: .85rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
}

.price-card > p { color: var(--muted); font-size: .96rem; }

.price-list {
	list-style: none;
	margin: 1.4rem 0 0;
	padding: 0;
}
.price-list li {
	position: relative;
	padding-left: 1.7rem;
	margin-bottom: .7rem;
	color: var(--muted);
	font-size: .95rem;
	line-height: 1.55;
}
.price-list li::before {
	content: "";
	position: absolute;
	left: 0; top: .55em;
	width: 8px; height: 8px;
	border-radius: 2px;
	background: var(--cyan);
	transform: rotate(45deg);
}
.price-list li strong { color: var(--text); font-weight: 600; }

/* Cost table */
.table-wrap {
	overflow-x: auto;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: rgba(11, 14, 20, .7);
	-webkit-overflow-scrolling: touch;
}

table.cost {
	width: 100%;
	min-width: 620px;
	border-collapse: collapse;
	font-size: .94rem;
}
table.cost caption {
	caption-side: top;
	text-align: left;
	padding: 1rem 1.2rem .4rem;
	font-family: var(--font-ui);
	font-size: .74rem;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--cyan);
}
table.cost th,
table.cost td {
	padding: .85rem 1.2rem;
	text-align: left;
	border-bottom: 1px solid var(--line);
	vertical-align: top;
}
table.cost thead th {
	font-family: var(--font-ui);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted-2);
	background: rgba(26, 32, 48, .55);
	white-space: nowrap;
}
table.cost tbody th {
	font-family: var(--font-body);
	font-weight: 600;
	color: var(--text);
}
table.cost td { color: var(--muted); }
table.cost td.num {
	font-family: var(--font-ui);
	font-weight: 600;
	color: var(--cyan);
	white-space: nowrap;
}
table.cost td.num--free { color: var(--emerald); }
table.cost tbody tr:last-child th,
table.cost tbody tr:last-child td { border-bottom: 0; }
table.cost tbody tr:hover td,
table.cost tbody tr:hover th { background: rgba(26, 32, 48, .38); }

.footnote {
	font-size: .86rem;
	color: var(--muted-2);
	line-height: 1.6;
	margin-top: 1.1rem;
}
.footnote strong { color: var(--muted); }

/* ==========================================================================
   9. Partners / investors
   ========================================================================== */

.pitch {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}

.pitch-card {
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: 1.7rem 1.6rem;
	background: linear-gradient(160deg, rgba(26, 32, 48, .5), rgba(11, 14, 20, .7));
	transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.pitch-card:hover { transform: translateY(-4px); }
.pitch-card--partners:hover  { border-color: rgba(79, 216, 235, .55); }
.pitch-card--influencers:hover { border-color: rgba(255, 180, 84, .55); }
.pitch-card--investors:hover { border-color: rgba(179, 136, 255, .55); }

.pitch-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.pitch-card--partners h3    { color: var(--cyan); }
.pitch-card--influencers h3 { color: var(--amber); }
.pitch-card--investors h3   { color: var(--violet); }
.pitch-card p { color: var(--muted); font-size: .96rem; margin-bottom: 0; }

.callout {
	border: 1px solid rgba(79, 216, 235, .35);
	border-left-width: 3px;
	border-radius: var(--r);
	background: linear-gradient(100deg, rgba(18, 65, 74, .4), rgba(11, 14, 20, .5));
	padding: 1.5rem 1.7rem;
}
.callout p { margin-bottom: 0; color: var(--muted); }
.callout strong { color: var(--text); }

/* ==========================================================================
   10. Contact / forms
   ========================================================================== */

.contact-layout {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.contact-aside .lede { margin-bottom: 1.6rem; }

.contact-points {
	list-style: none;
	margin: 0 0 1.8rem;
	padding: 0;
}
.contact-points li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: .65rem;
	color: var(--muted);
	font-size: .96rem;
}
.contact-points li::before {
	content: "";
	position: absolute;
	left: 0; top: .6em;
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--amber);
	box-shadow: 0 0 12px rgba(255, 180, 84, .7);
}

.contact-direct {
	font-family: var(--font-ui);
	font-size: .84rem;
	letter-spacing: .06em;
	color: var(--muted-2);
}
.contact-direct a { color: var(--cyan); }

.form-shell {
	background: linear-gradient(165deg, rgba(26, 32, 48, .66), rgba(11, 14, 20, .84));
	border: 1px solid var(--line-2);
	border-radius: var(--r-lg);
	padding: clamp(1.5rem, 3vw, 2.2rem);
}

/* Native fallback form */
.form-row { margin-bottom: 1.1rem; }
.form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.1rem;
	margin-bottom: 1.1rem;
}
.form-grid .form-row { margin-bottom: 0; }

.form-shell label,
.form-shell .forminator-label {
	display: block;
	font-family: var(--font-ui);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: .45rem;
}

.form-shell input[type="text"],
.form-shell input[type="email"],
.form-shell input[type="url"],
.form-shell input[type="tel"],
.form-shell select,
.form-shell textarea {
	width: 100%;
	background: rgba(7, 9, 14, .75);
	border: 1px solid var(--line-2);
	border-radius: var(--r-sm);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 1rem;
	padding: .8rem .95rem;
	transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-shell textarea { min-height: 150px; resize: vertical; }
.form-shell select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
	                  linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
	background-position: calc(100% - 20px) center, calc(100% - 14px) center;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 2.4rem;
}
.form-shell input:focus,
.form-shell select:focus,
.form-shell textarea:focus {
	outline: none;
	border-color: var(--cyan);
	box-shadow: 0 0 0 3px rgba(79, 216, 235, .16);
}
.form-shell ::placeholder { color: var(--muted-2); opacity: 1; }

.hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px; height: 1px;
	overflow: hidden;
}

.form-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 1.4rem;
}
.form-consent {
	font-size: .82rem;
	color: var(--muted-2);
	line-height: 1.5;
	margin: 0;
	flex: 1 1 220px;
}

.form-status {
	margin-top: 1rem;
	padding: .85rem 1.1rem;
	border-radius: var(--r-sm);
	font-size: .93rem;
	display: none;
}
.form-status.is-ok {
	display: block;
	background: rgba(53, 212, 140, .12);
	border: 1px solid rgba(53, 212, 140, .45);
	color: #9df0c9;
}
.form-status.is-err {
	display: block;
	background: rgba(240, 113, 120, .12);
	border: 1px solid rgba(240, 113, 120, .45);
	color: #ffb3b7;
}

/* --- Forminator overrides ------------------------------------------------
   Forminator ships its own light-theme CSS; these rules pull it onto the
   dark palette without touching the plugin. Selectors are scoped to
   .form-shell so nothing leaks into wp-admin. */

.form-shell .forminator-ui.forminator-custom-form,
.form-shell .forminator-ui.forminator-custom-form * { font-family: var(--font-body) !important; }

.form-shell .forminator-ui.forminator-custom-form .forminator-row { margin-bottom: 1.1rem !important; }

.form-shell .forminator-ui.forminator-custom-form .forminator-label,
.form-shell .forminator-ui.forminator-custom-form label {
	font-family: var(--font-ui) !important;
	font-size: .72rem !important;
	font-weight: 600 !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	color: var(--muted) !important;
}
.form-shell .forminator-ui.forminator-custom-form .forminator-required { color: var(--amber) !important; }

.form-shell .forminator-ui.forminator-custom-form .forminator-input,
.form-shell .forminator-ui.forminator-custom-form .forminator-textarea,
.form-shell .forminator-ui.forminator-custom-form select {
	background-color: rgba(7, 9, 14, .75) !important;
	border: 1px solid var(--line-2) !important;
	border-radius: var(--r-sm) !important;
	color: var(--text) !important;
	font-size: 1rem !important;
	height: auto !important;
	padding: .8rem .95rem !important;
	box-shadow: none !important;
}
.form-shell .forminator-ui.forminator-custom-form .forminator-textarea { min-height: 150px !important; }

.form-shell .forminator-ui.forminator-custom-form .forminator-input:focus,
.form-shell .forminator-ui.forminator-custom-form .forminator-textarea:focus,
.form-shell .forminator-ui.forminator-custom-form select:focus {
	border-color: var(--cyan) !important;
	box-shadow: 0 0 0 3px rgba(79, 216, 235, .16) !important;
}

.form-shell .forminator-ui.forminator-custom-form .forminator-button-submit {
	background: linear-gradient(135deg, var(--cyan), #37bcd0) !important;
	color: var(--on-cyan) !important;
	font-family: var(--font-ui) !important;
	font-size: .82rem !important;
	font-weight: 700 !important;
	letter-spacing: .12em !important;
	text-transform: uppercase !important;
	border: 0 !important;
	border-radius: 999px !important;
	padding: .9rem 1.7rem !important;
	box-shadow: 0 8px 30px rgba(79, 216, 235, .28) !important;
	transition: transform .18s var(--ease), box-shadow .22s var(--ease) !important;
}
.form-shell .forminator-ui.forminator-custom-form .forminator-button-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 40px rgba(79, 216, 235, .42) !important;
}

.form-shell .forminator-ui.forminator-custom-form .forminator-response-message,
.form-shell .forminator-ui.forminator-custom-form .forminator-error-message {
	background: rgba(26, 32, 48, .7) !important;
	border: 1px solid var(--line-2) !important;
	border-radius: var(--r-sm) !important;
	color: var(--text) !important;
	padding: .85rem 1.1rem !important;
}
.form-shell .forminator-ui.forminator-custom-form .forminator-response-message.forminator-success {
	border-color: rgba(53, 212, 140, .45) !important;
	color: #9df0c9 !important;
}
.form-shell .forminator-ui.forminator-custom-form .forminator-response-message.forminator-error {
	border-color: rgba(240, 113, 120, .45) !important;
	color: #ffb3b7 !important;
}

/* ==========================================================================
   11. Footer
   ========================================================================== */

.site-footer {
	border-top: 1px solid var(--line);
	background: rgba(7, 9, 14, .8);
	padding-top: clamp(3rem, 6vw, 4.5rem);
	padding-bottom: 2rem;
	margin-top: 2rem;
}

.footer-top {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) repeat(auto-fit, minmax(150px, 1fr));
	gap: 2.5rem;
	padding-bottom: 2.5rem;
}

.footer-brand p {
	color: var(--muted);
	font-size: .95rem;
	max-width: 42ch;
	margin-top: 1rem;
	margin-bottom: 0;
}

.footer-col h4 {
	font-family: var(--font-ui);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--muted-2);
	margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: var(--muted); font-size: .94rem; }
.footer-col a:hover { color: var(--cyan); }

.footer-studio {
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	padding: 1.6rem 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.footer-studio p { margin: 0; color: var(--muted); font-size: .95rem; }
.footer-studio a.studio {
	font-family: var(--font-display);
	font-size: 1.25rem;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--text);
}
.footer-studio a.studio:hover { color: var(--cyan); }
.footer-studio a.studio em { font-style: normal; color: var(--amber); }

.footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: .6rem 1.5rem;
	justify-content: space-between;
	padding-top: 1.6rem;
	font-size: .84rem;
	color: var(--muted-2);
}

/* ==========================================================================
   12. Reveal animation
   ========================================================================== */

.js .reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
	will-change: opacity, transform;
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
.js .reveal[data-delay="4"] { transition-delay: .32s; }

/* ==========================================================================
   13. Responsive
   ========================================================================== */

@media (max-width: 960px) {
	.contact-layout { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
	.nav-links, .nav-cta { display: none; }
	.nav-toggle { display: inline-flex; }
	.brand { margin-right: auto; }
	.hero { min-height: auto; }
}

@media (max-width: 560px) {
	body { font-size: 1rem; }
	.footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
	.hero-actions .btn { width: 100%; }
	.field::after { background-size: 44px 44px; }
}

/* ==========================================================================
   14. Motion / print
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}
	.js .reveal { opacity: 1; transform: none; }
	.field canvas { display: none; }
}

@media print {
	.field, .site-header, .nav-toggle, .form-shell { display: none !important; }
	body { background: #fff; color: #000; }
}
