/* ===========================================================
   Woodworkers Pricing & Profit Toolkit — Beta Landing
   Modern "workshop at night" aesthetic: deep pine-black,
   copper + sawdust-gold accents, cream ink.
   =========================================================== */

:root {
  --bg:        #0c1410;
  --bg-2:      #0f1a13;
  --bg-3:      #122017;
  --panel:     rgba(255, 255, 255, 0.035);
  --panel-2:   rgba(255, 255, 255, 0.06);
  --line:      rgba(245, 239, 227, 0.10);
  --line-2:    rgba(245, 239, 227, 0.18);

  --ink:       #f4eee2;
  --ink-soft:  #d8d2c4;
  --muted:     #9aa79a;
  --muted-2:   #76837a;

  --copper:    #c8772f;
  --copper-br: #e69a4f;
  --gold:      #e8b25a;
  --pine:      #355140;
  --pine-br:   #4d7a5c;
  --cream:     #f3ead8;

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1200px;

  --shadow:    0 30px 80px -30px rgba(0,0,0,0.75);
  --shadow-lg: 0 50px 120px -40px rgba(0,0,0,0.85);

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, .display {
  font-family: "Oswald", "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.04;
  color: var(--ink);
}

::selection { background: var(--copper); color: #1a0f05; }

/* ---------- layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--copper-br);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
}
.section { position: relative; padding: clamp(72px, 11vw, 150px) 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  text-transform: uppercase;
  margin: 18px 0 16px;
}
.section-head p { color: var(--muted); font-size: 1.08rem; max-width: 60ch; }

.grad-text {
  background: linear-gradient(100deg, var(--gold) 0%, var(--copper-br) 55%, var(--copper) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ===========================================================
   Ambient background (aurora + grain)
   =========================================================== */
.bg-fx { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.aurora {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.55; mix-blend-mode: screen;
  will-change: transform;
}
.aurora.a1 { width: 60vw; height: 60vw; top: -18vw; left: -10vw;
  background: radial-gradient(circle, rgba(200,119,47,0.55), transparent 65%);
  animation: drift1 22s ease-in-out infinite alternate; }
.aurora.a2 { width: 55vw; height: 55vw; top: 30vh; right: -18vw;
  background: radial-gradient(circle, rgba(53,81,64,0.85), transparent 65%);
  animation: drift2 26s ease-in-out infinite alternate; }
.aurora.a3 { width: 50vw; height: 50vw; bottom: -20vw; left: 20vw;
  background: radial-gradient(circle, rgba(232,178,90,0.30), transparent 65%);
  animation: drift3 30s ease-in-out infinite alternate; }
@keyframes drift1 { to { transform: translate(8vw, 10vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-10vw, -6vh) scale(1.1); } }
@keyframes drift3 { to { transform: translate(6vw, -8vh) scale(1.2); } }

.bg-grain {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
#fx-canvas { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

/* ===========================================================
   Nav
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.4s var(--ease);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; transition: padding 0.4s var(--ease);
}
.nav.scrolled { backdrop-filter: blur(16px); background: rgba(10,16,12,0.72); border-bottom: 1px solid var(--line); }
.nav.scrolled .nav-inner { padding: 12px 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: "Oswald", sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; flex: none;
  background: linear-gradient(145deg, var(--copper-br), var(--copper));
  display: grid; place-items: center; color: #1a0f05;
  box-shadow: 0 6px 18px -6px rgba(200,119,47,0.8);
}
.brand-mark svg { width: 19px; height: 19px; }
.brand-txt { font-size: 0.95rem; line-height: 1.05; }
.brand-txt span { display: block; font-family: "Inter", sans-serif; font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 0.66rem; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.9rem; color: var(--ink-soft); transition: color 0.2s; position: relative; }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn)::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--copper-br); transition:width .25s var(--ease); }
.nav-links a:not(.btn):hover::after { width:100%; }

.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 22px; border-radius: 100px; font-weight: 600;
  font-size: 0.92rem; transition: all 0.25s var(--ease); white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(145deg, var(--copper-br), var(--copper));
  color: #1c0f04;
  box-shadow: 0 10px 30px -10px rgba(200,119,47,0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(230,154,79,0.85); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--ink); background: var(--panel); }
.btn-ghost:hover { border-color: var(--copper-br); background: var(--panel-2); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.nav-toggle { display: none; }

/* ===========================================================
   Hero
   =========================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }

.beta-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 12px; border-radius: 100px;
  background: rgba(232,178,90,0.10); border: 1px solid rgba(232,178,90,0.32);
  font-size: 0.8rem; color: var(--gold); font-weight: 500; letter-spacing: 0.02em;
}
.beta-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(232,178,90,0.7); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(232,178,90,.6);} 70%{box-shadow:0 0 0 10px rgba(232,178,90,0);} 100%{box-shadow:0 0 0 0 rgba(232,178,90,0);} }

.hero h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.3rem);
  text-transform: uppercase; margin: 24px 0 22px; letter-spacing: 0;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero p.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 52ch; margin-bottom: 16px; }
.hero .sub { color: var(--muted); max-width: 50ch; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 22px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 0.86rem; }
.hero-note svg { width: 17px; height: 17px; color: var(--pine-br); flex: none; }

/* hero visual: 3D tilted device + floating medallions */
.hero-visual { position: relative; perspective: 1400px; min-height: 460px; }
.device {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg);
  transform: rotateY(-16deg) rotateX(7deg) rotateZ(1deg);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease);
  background: #0d1611;
}
.device::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(255,255,255,0.16), transparent 40%); pointer-events:none; }
.device-bar { display:flex; gap:7px; padding:11px 14px; background:#0a120d; border-bottom:1px solid var(--line); }
.device-bar i { width:11px; height:11px; border-radius:50%; background:#2a3a30; }
.device-bar i:nth-child(1){background:#c8772f;}
.device img { width: 100%; display:block; }

.medallion {
  position: absolute; width: 118px; height: 118px; border-radius: 50%;
  display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(circle at 35% 30%, #fbf4e6, #efe2c8);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 24px 50px -18px rgba(0,0,0,0.7), inset 0 2px 6px rgba(255,255,255,0.6);
  will-change: transform;
}
.medallion img { width: 132%; max-width: none; filter: saturate(1.05); }
.medallion.m1 { top: -34px; left: -42px; width: 130px; height: 130px; }
.medallion.m2 { bottom: 18px; left: -56px; width: 102px; height: 102px; }
.medallion.m3 { top: 40px; right: -46px; width: 96px; height: 96px; }
.float { animation: floaty 7s ease-in-out infinite; }
.float.d1 { animation-delay: -2s; }
.float.d2 { animation-delay: -4s; }
@keyframes floaty { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-16px);} }

.spark {
  position:absolute; border-radius:50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity:.6; filter: blur(1px);
}

/* ===========================================================
   Marquee stat strip
   =========================================================== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--panel); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.stat { background: var(--bg); padding: 34px 26px; text-align: center; }
.stat .num { font-family: "Oswald", sans-serif; font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: 0.86rem; margin-top: 10px; text-transform: uppercase; letter-spacing: 0.12em; }

/* ===========================================================
   Intro / value
   =========================================================== */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.vcard:hover { transform: translateY(-6px); border-color: var(--line-2); background: var(--panel-2); }
.vcard .ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(145deg, rgba(200,119,47,0.22), rgba(200,119,47,0.06)); border: 1px solid rgba(200,119,47,0.3); color: var(--copper-br); }
.vcard .ic svg { width: 24px; height: 24px; }
.vcard h3 { font-size: 1.25rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.02em; }
.vcard p { color: var(--muted); font-size: 0.95rem; }

/* ===========================================================
   Feature marquee rows
   =========================================================== */
.feature { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; margin-bottom: clamp(80px, 11vw, 150px); }
.feature:last-child { margin-bottom: 0; }
.feature.flip .f-copy { order: 2; }
.feature.flip .f-media { order: 1; }
.f-copy .fnum { font-family:"Oswald"; font-size:0.8rem; letter-spacing:0.3em; color:var(--copper-br); text-transform:uppercase; }
.f-copy h3 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); text-transform: uppercase; margin: 14px 0 10px; }
.f-copy .tag { color: var(--gold); font-weight: 500; font-size: 1.05rem; margin-bottom: 18px; font-family:"Oswald"; letter-spacing:0.02em; }
.f-copy p { color: var(--muted); margin-bottom: 22px; }
.f-list { list-style: none; display: grid; gap: 13px; }
.f-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); font-size: 0.96rem; }
.f-list li svg { width: 20px; height: 20px; color: var(--copper-br); flex: none; margin-top: 1px; }

.f-media { perspective: 1500px; }
.f-frame {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line-2);
  box-shadow: var(--shadow); transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  transform-style: preserve-3d; position: relative;
}
.f-frame .bar { display:flex; gap:7px; padding:10px 13px; background:#0a120d; border-bottom:1px solid var(--line); }
.f-frame .bar i { width:10px; height:10px; border-radius:50%; background:#2a3a30; }
.f-frame .bar i:first-child{ background:#c8772f; }
.f-frame:hover { box-shadow: var(--shadow-lg); }
.f-frame img { width: 100%; }
.glow-wrap { position: relative; }
.glow-wrap::before {
  content:""; position:absolute; inset:-30px -30px 10px; z-index:-1; border-radius:30px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(200,119,47,0.28), transparent 70%); filter: blur(20px);
}

/* ===========================================================
   Toolkit gallery (all 12)
   =========================================================== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gtile {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--line); background: var(--panel); cursor: pointer;
  transition: all 0.35s var(--ease); aspect-ratio: 3/2;
}
.gtile img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.5s var(--ease); }
.gtile:hover { transform: translateY(-5px); border-color: var(--copper-br); box-shadow: var(--shadow); }
.gtile:hover img { transform: scale(1.06); }
.gtile .cap {
  position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px; z-index:2;
  background: linear-gradient(transparent, rgba(8,12,9,0.92));
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.gtile .cap b { font-family:"Oswald"; font-weight:600; text-transform:uppercase; font-size:0.84rem; letter-spacing:0.03em; }
.gtile .cap .exp { width:24px; height:24px; border-radius:50%; background:rgba(200,119,47,0.9); display:grid; place-items:center; color:#1a0f05; flex:none; opacity:0; transform:scale(.7); transition:all .3s var(--ease); }
.gtile:hover .cap .exp { opacity:1; transform:scale(1); }
.gtile .cap .exp svg { width:13px; height:13px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 30px;
  background: rgba(6,9,7,0.88); backdrop-filter: blur(8px); }
.lightbox.open { display: flex; animation: fade 0.3s ease; }
@keyframes fade { from{opacity:0;} to{opacity:1;} }
.lightbox img { max-width: min(1300px, 96vw); max-height: 90vh; width:auto; border-radius: 12px; box-shadow: var(--shadow-lg); border:1px solid var(--line-2); }
.lb-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; background: var(--panel-2); border:1px solid var(--line-2); color: var(--ink); display: grid; place-items: center; }
.lb-close:hover { background: var(--copper); color:#1a0f05; }
.lb-nav { position:absolute; top:50%; transform:translateY(-50%); width:54px; height:54px; border-radius:50%; background:var(--panel-2); border:1px solid var(--line-2); color:var(--ink); display:grid; place-items:center; transition:all .2s; }
.lb-nav:hover { background: var(--copper); color:#1a0f05; }
.lb-prev { left: 24px; } .lb-next { right: 24px; }
.lb-nav svg { width:22px; height:22px; }

/* ===========================================================
   How beta works
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; position: relative; transition: all .35s var(--ease);
}
.step:hover { transform: translateY(-6px); border-color: var(--line-2); }
.step .n { font-family:"Oswald"; font-weight:700; font-size: 3.2rem; color: rgba(232,178,90,0.18); line-height: 1; }
.step h3 { font-size: 1.35rem; text-transform: uppercase; margin: 4px 0 10px; }
.step p { color: var(--muted); font-size: 0.96rem; }
.step .badge-free { display:inline-block; margin-top:14px; padding:5px 12px; border-radius:100px; background:rgba(77,122,92,0.2); border:1px solid rgba(77,122,92,0.5); color:#9fd3ad; font-size:0.78rem; font-weight:600; }

/* ===========================================================
   Beta form
   =========================================================== */
.apply { position: relative; }
.apply-card {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0;
  border-radius: 26px; overflow: hidden; border: 1px solid var(--line-2);
  box-shadow: var(--shadow-lg); background: var(--bg-2);
}
.apply-aside {
  padding: 48px 42px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--pine) 0%, #1c2c22 70%, #14201a 100%);
}
.apply-aside::after { content:""; position:absolute; inset:0; opacity:.5;
  background: radial-gradient(120% 80% at 0% 0%, rgba(232,178,90,0.22), transparent 55%); }
.apply-aside > * { position: relative; z-index: 1; }
.apply-aside h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); text-transform: uppercase; margin: 16px 0 16px; }
.apply-aside p { color: rgba(243,237,226,0.82); margin-bottom: 28px; }
.perk { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 16px; }
.perk svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.perk b { display:block; font-family:"Oswald"; text-transform:uppercase; letter-spacing:0.02em; font-size:0.95rem; }
.perk span { color: rgba(243,237,226,0.72); font-size: 0.88rem; }

.apply-form { padding: 46px 42px; }
.req-note { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; margin-bottom: 26px;
  border-radius: var(--radius-sm); background: rgba(232,178,90,0.07); border: 1px solid rgba(232,178,90,0.28); }
.req-note svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 1px; }
.req-note p { font-size: 0.84rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.req-note b { color: var(--ink); font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 8px; letter-spacing: 0.02em; }
label .req { color: var(--copper-br); }
input[type=text], input[type=email], select, textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,0.25); border: 1px solid var(--line-2); color: var(--ink);
  font-family: inherit; font-size: 0.95rem; transition: all 0.2s; appearance: none;
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%239aa79a' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 14px center; padding-right: 38px; }
textarea { resize: vertical; min-height: 92px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--copper-br); background: rgba(0,0,0,0.4); box-shadow: 0 0 0 3px rgba(200,119,47,0.15); }
input::placeholder, textarea::placeholder { color: var(--muted-2); }

.check { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 22px; }
.check input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--copper); flex: none; }
.check label { margin: 0; font-weight: 400; color: var(--muted); font-size: 0.86rem; }
.hp { position: absolute; left: -9999px; }
.submit-btn { width: 100%; justify-content: center; }
.form-foot { text-align: center; color: var(--muted-2); font-size: 0.8rem; margin-top: 16px; }

.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success.show { display: block; animation: fade 0.4s ease; }
.form-success .check-ic { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 22px;
  background: linear-gradient(145deg, var(--pine-br), var(--pine)); display: grid; place-items: center; box-shadow: 0 16px 40px -14px rgba(77,122,92,0.7); }
.form-success .check-ic svg { width: 38px; height: 38px; color: #eafff0; }
.form-success h3 { font-size: 1.8rem; text-transform: uppercase; margin-bottom: 12px; }
.form-success p { color: var(--muted); max-width: 40ch; margin: 0 auto; }

/* ===========================================================
   Footer
   =========================================================== */
.footer { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; }
.footer p { color: var(--muted); font-size: 0.9rem; max-width: 40ch; margin-top: 16px; }
.footer a.mail { color: var(--copper-br); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-soft); font-size: 0.9rem; }
.footer-links a:hover { color: var(--copper-br); }
.copyright { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.82rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; }

/* ===========================================================
   Reveal animations
   =========================================================== */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.from-left { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px); }
.reveal.in.from-left, .reveal.in.from-right { transform: none; }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 70px; }
  .hero-visual { max-width: 560px; }
  .feature, .feature.flip .f-copy, .feature.flip .f-media { grid-template-columns: 1fr; order: 0; }
  .feature { gap: 32px; }
  .feature .f-media { order: -1; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .apply-card { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); flex-direction: column; align-items: flex-start;
    background: rgba(10,16,12,0.97); backdrop-filter: blur(20px); padding: 100px 30px 30px; gap: 22px;
    transform: translateX(100%); transition: transform 0.4s var(--ease); border-left: 1px solid var(--line); z-index: 99; }
  .nav-links.open { transform: none; }
  .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; z-index: 101; color: var(--ink); }
  .nav-toggle svg { width: 26px; height: 26px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-aside, .apply-form { padding: 34px 26px; }
  .medallion { display: none; }
  .container { padding: 0 18px; }
  .lb-nav { width:44px; height:44px; }
}
