/* ==========================================================================
   aussieaiphone.com
   Dark workshop. Eucalypt green, wattle gold, red-earth ochre on near-black.
   Mono for anything that is or describes code, because that is the job.
   ========================================================================== */

:root {
  --ink:       #0a0e0b;
  --ink-2:     #0f1511;
  --surface:   #141d17;
  --surface-2: #1a251d;
  --line:      #24322a;
  --line-2:    #33443a;

  --gum:       #2fa25e;
  --gum-lt:    #5fd18c;
  --gum-dk:    #1d7042;
  --gum-wash:  rgba(47,162,94,.12);

  --gold:      #ffc61e;
  --gold-dk:   #d9a200;
  --gold-wash: rgba(255,198,30,.12);

  --ochre:     #d2703f;
  --ochre-lt:  #e89a6f;

  --text:      #e8f0ea;
  --text-2:    #a6bdae;
  --text-3:    #75907f;

  --display: 'Sora', system-ui, -apple-system, sans-serif;
  --body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;
  --r-xl: 30px;
  --r-full: 999px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --wrap: 1220px;
  --gut: 24px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: var(--gum-lt); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.03em;
  color: #fff;
}
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.22rem; letter-spacing: -.02em; }

p { color: var(--text-2); }
strong { color: var(--text); font-weight: 700; }

::selection { background: var(--gold); color: var(--ink); }

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

.wrap { width: min(var(--wrap), 100% - (var(--gut) * 2)); margin-inline: auto; }
.wrap--read { width: min(760px, 100% - (var(--gut) * 2)); margin-inline: auto; }

section { position: relative; }
.pad { padding: clamp(64px, 9vw, 130px) 0; }
.pad-t { padding-top: clamp(64px, 9vw, 130px); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink); padding: 10px 16px; border-radius: 0 0 8px 0;
  font-weight: 700;
}
.skip:focus { left: 0; }

/* --- kickers and section heads ------------------------------------------ */

.kicker {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gum-lt);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.kicker::before {
  content: ''; width: 26px; height: 1px; background: var(--gum); display: block;
}
.kicker--gold { color: var(--gold); }
.kicker--gold::before { background: var(--gold-dk); }

.lede { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--text-2); max-width: 62ch; }
.sec-head { max-width: 72ch; margin-bottom: clamp(38px, 5vw, 64px); }
.sec-head p { margin-top: 18px; }

/* --- buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: .96rem;
  letter-spacing: -.01em;
  padding: 14px 24px; border-radius: var(--r-full);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #17140a; }
.btn--gold:hover { background: #ffd451; color: #17140a; }
.btn--gum { background: var(--gum); color: #04170c; }
.btn--gum:hover { background: var(--gum-lt); color: #04170c; }
.btn--ghost { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--gum); color: #fff; background: var(--gum-wash); }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* --- nav ----------------------------------------------------------------- */

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10,14,11,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.stuck { border-bottom-color: var(--line); background: rgba(10,14,11,.94); }
.nav__in { display: flex; align-items: center; gap: 28px; height: 74px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.brand--foot img { height: 44px; }
@media (max-width: 560px) { .brand img { height: 32px; } }

.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a {
  font-size: .93rem; color: var(--text-2); font-weight: 600;
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .25s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }

.nav__cta { flex-shrink: 0; }
.nav__burger {
  display: none; background: none; border: 1px solid var(--line-2);
  border-radius: 10px; padding: 9px 11px; cursor: pointer; margin-left: auto;
}
.nav__burger span { display: block; width: 18px; height: 2px; background: var(--text); margin: 3px 0; border-radius: 2px; }

@media (max-width: 950px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__in { height: 64px; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--ink-2);
    border-block: 1px solid var(--line); padding: 8px var(--gut) 18px;
  }
  .nav.open .nav__links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
}

/* --- hero ---------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; isolation: isolate; }
.hero__bg {
  position: absolute; inset: 0; z-index: -3;
  background-size: cover; background-position: center 42%;
  transform: scale(1.06);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(0,0,0); }
  to   { transform: scale(1.13) translate3d(-1.4%, -1.2%, 0); }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(100deg, rgba(10,14,11,.88) 0%, rgba(10,14,11,.58) 46%,
                    rgba(10,14,11,.30) 100%),
    linear-gradient(180deg, rgba(10,14,11,.52) 0%, rgba(10,14,11,.70) 50%, var(--ink) 100%),
    radial-gradient(90% 70% at 22% 30%, rgba(47,162,94,.18), transparent 62%);
}
.hero__in { padding: clamp(72px, 12vw, 148px) 0 clamp(60px, 8vw, 104px); }
.hero__grid-inner {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(32px, 5vw, 70px); align-items: center;
}
@media (max-width: 1000px) { .hero__grid-inner { grid-template-columns: 1fr; } }

.hero h1 {
  font-size: clamp(3.4rem, 9.5vw, 7rem);
  line-height: .9; letter-spacing: -.055em; margin-bottom: 8px;
}
.hero h1 .day { color: var(--gold); }
.hero h1 .dot { color: var(--gum); }
.hero__sub {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.95rem); color: #fff;
  letter-spacing: -.03em; line-height: 1.2; margin-bottom: 20px; max-width: 20ch;
}
.hero__copy { max-width: 54ch; font-size: 1.06rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }

/* trust strip under the hero */
.trust {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; margin-top: clamp(48px, 6vw, 76px);
}
.trust div { background: var(--ink-2); padding: 20px 22px; }
.trust dt {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 7px;
}
.trust dd { font-family: var(--display); font-weight: 600; color: #fff; font-size: .98rem; letter-spacing: -.02em; }
@media (max-width: 860px) { .trust { grid-template-columns: repeat(2, 1fr); } }

/* --- the wiring diagram -------------------------------------------------- */

.rig {
  position: relative; border: 1px solid var(--line); border-radius: var(--r-lg);
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(47,162,94,.09), transparent 70%),
    var(--ink-2);
  padding: clamp(18px, 3vw, 34px); overflow: hidden;
}
.rig::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px; opacity: .45; pointer-events: none;
}
.rig svg { position: relative; width: 100%; height: auto; }
.rig__scroll { position: relative; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.rig__scroll::-webkit-scrollbar { height: 6px; }
.rig__scroll::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.rig__hint { display: none; }
@media (max-width: 860px) {
  .rig__scroll svg { min-width: 700px; }
  .rig__hint {
    display: block; font-family: var(--mono); font-size: .66rem; letter-spacing: .12em;
    text-transform: uppercase; color: var(--text-3); margin-top: 12px; position: relative;
  }
}

.rig__cap {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: .7rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--text-3);
  margin-bottom: 16px; position: relative;
}
.rig__cap .live { display: inline-flex; align-items: center; gap: 7px; color: var(--gum-lt); }
.rig__cap .live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gum-lt);
  animation: blink 1.9s steps(1) infinite;
}
@keyframes blink { 0%,60% { opacity: 1; } 61%,100% { opacity: .22; } }

/* wires + travelling packets */
.wire { fill: none; stroke: var(--line-2); stroke-width: 1.6; }
.wire--live {
  stroke: var(--gum); stroke-width: 1.8;
  stroke-dasharray: 5 9; animation: flow 1.5s linear infinite;
}
@keyframes flow { to { stroke-dashoffset: -28; } }
.pkt { fill: var(--gold); }
.node-box { fill: var(--surface); stroke: var(--line-2); }
.node-box--hub { fill: #10241a; stroke: var(--gum); }
.node-t { font-family: var(--mono); font-size: 9.5px; fill: var(--text-2); letter-spacing: .04em; }
.node-t--hub { fill: #fff; font-size: 11px; font-weight: 600; }
.node-t--sm { font-size: 7.6px; fill: var(--text-3); }
.hub-ring { fill: none; stroke: var(--gum); stroke-opacity: .35; transform-origin: center; }

/* --- cards --------------------------------------------------------------- */

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 900px)  { .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 680px)  {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  position: relative; background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 26px 30px;
  transition: border-color .28s var(--ease), transform .28s var(--ease), background .28s var(--ease);
  overflow: hidden;
}
.card::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg, var(--gum), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--surface); }
.card:hover::after { transform: scaleX(1); }
.card h3 { margin-bottom: 11px; }
.card p { font-size: .96rem; }
.card__n {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  color: var(--gum); margin-bottom: 18px; display: block;
}
.card__ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gum-wash); border: 1px solid rgba(47,162,94,.3); margin-bottom: 18px;
}
.card__ico svg { width: 21px; height: 21px; stroke: var(--gum-lt); fill: none; stroke-width: 1.7; }
.card--gold .card__ico { background: var(--gold-wash); border-color: rgba(255,198,30,.3); }
.card--gold .card__ico svg { stroke: var(--gold); }
.card--gold .card__n { color: var(--gold); }

.why-pt h3 { margin-bottom: 9px; font-size: 1.04rem; }
.why-pt p { font-size: .95rem; }

/* FAQ disclosure */
details.faq { padding: 0; }
details.faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px;
  display: flex; align-items: flex-start; gap: 14px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary h3 { font-size: 1.02rem; font-weight: 600; flex: 1; }
details.faq summary::after {
  content: '+'; font-family: var(--mono); color: var(--gum-lt); font-size: 1.2rem;
  line-height: 1; transition: transform .25s var(--ease); flex-shrink: 0;
}
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq > p { padding: 0 26px 24px; font-size: .95rem; }
details.faq::after { display: none; }
details.faq:hover { transform: none; }

.ticks { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.ticks li {
  position: relative; padding-left: 25px; font-size: .92rem; color: var(--text-2);
}
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .52em;
  width: 13px; height: 7px; border-left: 2px solid var(--gum-lt);
  border-bottom: 2px solid var(--gum-lt); transform: rotate(-45deg);
}

/* --- integration showcase ------------------------------------------------ */

.build {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--ink-2); overflow: hidden; display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.05fr);
  transition: border-color .28s var(--ease);
}
.build:hover { border-color: var(--line-2); }
@media (max-width: 900px) { .build { grid-template-columns: 1fr; } }
.build__txt { padding: 30px 30px 32px; }
.build__tag {
  display: inline-block; font-family: var(--mono); font-size: .68rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--ochre-lt);
  border: 1px solid rgba(210,112,63,.35); background: rgba(210,112,63,.1);
  padding: 4px 11px; border-radius: var(--r-full); margin-bottom: 16px;
}
.build__txt h3 { margin-bottom: 12px; font-size: 1.32rem; }
.build__txt p { font-size: .96rem; }
.build__meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px;
}
.build__meta span {
  font-family: var(--mono); font-size: .72rem; color: var(--text-3);
  border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 4px 9px;
}

.term {
  background: #070b08; border-left: 1px solid var(--line);
  display: flex; flex-direction: column; min-width: 0;
}
@media (max-width: 900px) { .term { border-left: 0; border-top: 1px solid var(--line); } }
.term__bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 15px;
  border-bottom: 1px solid var(--line); flex-shrink: 0;
}
.term__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); display: block; }
.term__bar i:first-child { background: var(--ochre); }
.term__bar i:nth-child(2) { background: var(--gold-dk); }
.term__bar i:nth-child(3) { background: var(--gum-dk); }
.term__bar span {
  font-family: var(--mono); font-size: .7rem; color: var(--text-3);
  margin-left: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.term pre {
  margin: 0; padding: 18px 20px 22px; overflow-x: auto;
  font-family: var(--mono); font-size: .795rem; line-height: 1.72; color: #cfe3d6;
  flex: 1;
}
.term pre::-webkit-scrollbar { height: 7px; }
.term pre::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.c-key { color: var(--gum-lt); }
.c-str { color: var(--gold); }
.c-num { color: var(--ochre-lt); }
.c-com { color: #5c7566; font-style: italic; }
.c-fn  { color: #8fd5ff; }
.c-kw  { color: #ff9ec2; }

/* --- the integrated stack ------------------------------------------------ */

.stack {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 30px 34px;
}
@media (max-width: 1000px) { .stack { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px)  { .stack { grid-template-columns: 1fr; } }

.stack__g h3 {
  font-family: var(--mono); font-size: .7rem; font-weight: 500; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gum-lt); margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; }
.chips li {
  font-size: .845rem; color: var(--text-2); line-height: 1.2;
  border: 1px solid var(--line); background: var(--ink-2);
  border-radius: var(--r-sm); padding: 6px 10px;
  transition: border-color .2s var(--ease), color .2s var(--ease),
              background .2s var(--ease);
}
.chips li:hover { border-color: var(--gum); color: #fff; background: var(--gum-wash); }

/* --- split panel with photo ---------------------------------------------- */

.split {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(28px, 4vw, 64px); align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.shot {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4 / 3;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.shot:hover img { transform: scale(1.05); }
.shot::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(190deg, transparent 40%, rgba(10,14,11,.72));
}
.shot__cap {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-2);
}

/* --- endorsement --------------------------------------------------------- */

.quote {
  position: relative; border: 1px solid var(--line); border-radius: var(--r-xl);
  background:
    radial-gradient(70% 130% at 4% 0%, rgba(47,162,94,.15), transparent 56%),
    radial-gradient(60% 130% at 99% 100%, rgba(255,198,30,.10), transparent 62%),
    var(--ink-2);
  padding: clamp(26px, 3.4vw, 46px);
  overflow: hidden;
  display: grid; align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: clamp(26px, 4vw, 54px);
}
@media (max-width: 880px) { .quote { grid-template-columns: 1fr; } }

.quote__body { position: relative; }
.quote__mark {
  position: absolute; top: -26px; left: -8px;
  font-family: var(--display); font-weight: 700; font-size: 6.5rem;
  line-height: 1; color: var(--gum); opacity: .16; pointer-events: none;
}
.quote blockquote { position: relative; }
.quote blockquote p {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.02rem, 1.42vw, 1.26rem); line-height: 1.5;
  letter-spacing: -.018em; color: #fff;
}
.quote figcaption {
  position: relative; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 5px 13px;
}
.quote figcaption::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 58px; height: 1px;
  background: var(--gold);
}
.quote__name {
  font-family: var(--display); font-weight: 600; font-size: .98rem;
  color: #fff; letter-spacing: -.02em;
}
.quote__role {
  font-family: var(--mono); font-size: .71rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-3);
}

/* the collage: four tiles, two columns, drifting on slightly different clocks */
.collage {
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(44px, 5.1vw, 64px); gap: 10px;
}
.collage__t {
  position: relative; overflow: hidden; border-radius: var(--r);
  border: 1px solid var(--line);
}
.collage__t::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,11,.05), rgba(10,14,11,.5));
}
.collage__t img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.9) contrast(1.02);
  transition: transform .9s var(--ease);
}
.collage:hover .collage__t img { transform: scale(1.05); }
/* 3+2 in one column against 2+3 in the other, so both columns finish level.
   No idle animation here on purpose: drifting photos in the corner of the eye
   are a nuisance to read past. Motion is hover-only, so the reader asks for it. */
.collage__t:nth-child(1) { grid-row: span 3; }
.collage__t:nth-child(2) { grid-row: span 2; }
.collage__t:nth-child(3) { grid-row: span 3; }
.collage__t:nth-child(4) { grid-row: span 2; }
@media (max-width: 880px) {
  .collage { grid-auto-rows: 56px; }
}

/* --- industries ---------------------------------------------------------- */

.inds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .inds { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .inds { grid-template-columns: 1fr; } }
.ind {
  position: relative; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 5 / 4; border: 1px solid var(--line); display: block;
}
.ind img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.86); transition: transform .9s var(--ease), filter .5s var(--ease); }
.ind:hover img { transform: scale(1.07); filter: saturate(1.05); }
.ind::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,11,.12) 30%, rgba(10,14,11,.9));
}
.ind__body { position: absolute; inset: auto 0 0 0; padding: 20px; z-index: 2; }
.ind__body h3 { font-size: 1.05rem; margin-bottom: 5px; }
.ind__body p { font-size: .85rem; color: var(--text-2); margin: 0; }

/* --- pricing ------------------------------------------------------------- */

.price {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px 32px; display: flex; flex-direction: column;
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}
.price:hover { transform: translateY(-4px); border-color: var(--line-2); }
.price--hero { border-color: rgba(255,198,30,.42); background: linear-gradient(180deg, rgba(255,198,30,.07), transparent 48%), var(--ink-2); }
.price__flag {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.price h3 { font-size: 1.15rem; margin-bottom: 8px; }
.price__fig {
  font-family: var(--display); font-weight: 700; letter-spacing: -.045em;
  font-size: clamp(2.3rem, 4vw, 3.1rem); color: #fff; line-height: 1; margin: 16px 0 4px;
}
.price__fig small { font-size: .95rem; font-weight: 600; color: var(--text-3); letter-spacing: 0; }
.price__unit { font-family: var(--mono); font-size: .74rem; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; }
.price .ticks { margin-top: 22px; margin-bottom: 26px; }
.price .btn { margin-top: auto; justify-content: center; }
.gst {
  font-family: var(--mono); font-size: .76rem; color: var(--text-3);
  text-align: center; margin-top: 26px; letter-spacing: .06em;
}

/* --- process ------------------------------------------------------------- */

.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.steps::before {
  content: ''; position: absolute; left: 0; right: 0; top: 21px; height: 1px;
  background: linear-gradient(90deg, var(--gum), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.3s var(--ease);
}
.steps.in::before { transform: scaleX(1); }
@media (max-width: 900px) { .steps::before { display: none; } }
.step__dot {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); border: 1px solid var(--gum); color: var(--gum-lt);
  font-family: var(--mono); font-size: .82rem; margin-bottom: 18px; position: relative; z-index: 2;
}
.step h3 { font-size: 1.05rem; margin-bottom: 9px; }
.step p { font-size: .92rem; }

/* --- callout / cta band -------------------------------------------------- */

.band {
  border: 1px solid var(--line); border-radius: var(--r-xl);
  background:
    radial-gradient(70% 120% at 12% 0%, rgba(47,162,94,.18), transparent 60%),
    radial-gradient(60% 120% at 92% 100%, rgba(255,198,30,.12), transparent 62%),
    var(--ink-2);
  padding: clamp(36px, 6vw, 68px); position: relative; overflow: hidden;
}
.band h2 { margin-bottom: 16px; }
.band__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

.note {
  border-left: 2px solid var(--gold); background: var(--gold-wash);
  padding: 18px 22px; border-radius: 0 var(--r) var(--r) 0; margin-top: 26px;
}
.note p { color: var(--text); font-size: .95rem; }

/* --- footer -------------------------------------------------------------- */

.foot { border-top: 1px solid var(--line); background: var(--ink-2); padding: 60px 0 34px; margin-top: clamp(64px, 9vw, 120px); }
.foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 860px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot__grid { grid-template-columns: 1fr; } }
.foot h4 {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 15px; font-weight: 500;
}
.foot ul { list-style: none; display: grid; gap: 9px; }
.foot a { color: var(--text-2); font-size: .93rem; }
.foot a:hover { color: var(--gold); }
.foot__bar {
  border-top: 1px solid var(--line); margin-top: 44px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .84rem; color: var(--text-3);
}
.foot__bar p { font-size: .84rem; color: var(--text-3); }

/* --- scroll reveal ------------------------------------------------------- */

.rise { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rise.in { opacity: 1; transform: none; }
.rise.d1 { transition-delay: .08s; }
.rise.d2 { transition-delay: .16s; }
.rise.d3 { transition-delay: .24s; }
.rise.d4 { transition-delay: .32s; }

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