
:root {
  --deep: #1C3D36;
  --deep-2: #112E28;
  --green: #007359;
  --lime: #03FF94;
  --blue: #59C4D1;
  --white: #FFFFFF;
  --mist: #E3E0E3;
  --ink: #000D0A;
  --ink-soft: #325249;
  --paper: #F8FBF9;
  --line: rgba(28, 61, 54, 0.14);
  --line-dark: rgba(255,255,255,0.16);
  --white-82: rgba(255,255,255,0.82);
  --white-70: rgba(255,255,255,0.70);
  --white-58: rgba(255,255,255,0.58);
  --font: "Poppins", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-xl: 40px;
  --shadow: 0 18px 50px rgba(0, 13, 10, 0.11);
  --shadow-deep: 0 28px 70px rgba(0, 13, 10, 0.30);
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.66; text-rendering: optimizeLegibility; }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--deep); background: var(--lime); }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

.skip-link { position: fixed; top: -80px; left: 16px; z-index: 999; padding: 10px 14px; border-radius: 10px; background: var(--lime); color: var(--ink); font-weight: 600; transition: top .2s var(--ease); }
.skip-link:focus { top: 16px; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 132px) 0; }
.section--tight { padding: clamp(52px, 7vw, 84px) 0; }
.section--soft { background: linear-gradient(180deg, #F8FBF9 0%, #EDF5F1 100%); }
.section--deep { position: relative; overflow: clip; background: var(--deep); color: var(--white); }
.section--deep::before, .section--deep::after { position: absolute; border-radius: 999px; content: ""; pointer-events: none; }
.section--deep::before { width: 520px; height: 520px; top: -310px; left: -250px; background: radial-gradient(circle, rgba(3,255,148,.17), transparent 68%); }
.section--deep::after { width: 340px; height: 340px; right: -170px; bottom: -220px; border: 1px solid rgba(3,255,148,.28); }
.section--deep > .container { position: relative; z-index: 1; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 17px; color: var(--green); font-size: 12px; font-weight: 600; letter-spacing: .12em; line-height: 1.3; text-transform: uppercase; }
.eyebrow::before { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(3,255,148,.11); content: ""; }
.eyebrow--lime { color: var(--lime); }

h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { color: inherit; font-weight: 600; letter-spacing: -.048em; line-height: 1.05; }
h1 { font-size: clamp(3rem, 5.5vw, 5.75rem); max-width: 12ch; }
h2 { font-size: clamp(2rem, 3.45vw, 3.75rem); max-width: 17ch; }
h3 { font-size: clamp(1.23rem, 1.45vw, 1.58rem); }
.display-em { color: var(--lime); font-weight: 700; }
.lead { max-width: 660px; margin: 26px 0 0; color: var(--ink-soft); font-size: clamp(1rem, 1.35vw, 1.18rem); font-weight: 400; line-height: 1.72; }
.lead--light { color: var(--white-82); }
.prose { max-width: 760px; color: var(--ink-soft); }
.prose p + p { margin-top: 18px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 13px 20px; overflow: hidden; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 600; line-height: 1; isolation: isolate; transition: transform .18s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.btn::before { position: absolute; inset: 1px; z-index: -1; border-radius: inherit; content: ""; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn--primary { border-color: rgba(3,255,148,.8); background: linear-gradient(135deg, #0A251F, #1C3D36); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 10px 26px rgba(0,13,10,.26); color: var(--white); }
.btn--primary::after { color: var(--lime); font-size: 13px; content: "✦"; }
.btn--primary:hover { border-color: var(--lime); box-shadow: inset 0 0 0 1px rgba(3,255,148,.28), 0 14px 30px rgba(0,13,10,.30), 0 0 18px rgba(3,255,148,.14); }
.btn--secondary { border-color: rgba(255,255,255,.52); background: transparent; color: var(--white); }
.btn--secondary:hover { border-color: var(--lime); color: var(--lime); }
.btn--dark { border-color: var(--deep); background: var(--deep); color: var(--white); }
.btn--dark:hover { background: var(--deep-2); }
.btn--outline { border-color: rgba(28,61,54,.35); background: transparent; color: var(--deep); }
.btn--outline:hover { border-color: var(--green); background: rgba(0,115,89,.06); color: var(--green); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 14px; font-weight: 600; }
.text-link svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.text-link:hover svg { transform: translateX(4px); }

.site-header { position: sticky; top: 0; z-index: 80; border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(28,61,54,.96); backdrop-filter: blur(18px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: inline-flex; width: 124px; align-items: center; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); color: var(--white-82); font-size: 13px; font-weight: 600; }
.desktop-nav > a, .desktop-nav summary { display: inline-flex; align-items: center; min-height: 48px; color: inherit; list-style: none; cursor: pointer; transition: color .2s ease; }
.desktop-nav summary::-webkit-details-marker { display: none; }
.desktop-nav > a:hover, .desktop-nav summary:hover, .desktop-nav > a[aria-current="page"] { color: var(--lime); }
.desktop-nav details { position: relative; }
.desktop-menu { position: absolute; top: calc(100% + 6px); left: -20px; display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); width: 425px; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.desktop-menu a { display: grid; gap: 4px; padding: 12px; border-radius: 13px; }
.desktop-menu a:hover { background: #EFF8F3; }
.desktop-menu b { color: var(--deep); font-size: 13px; font-weight: 600; }
.desktop-menu span { color: var(--ink-soft); font-size: 11px; font-weight: 400; line-height: 1.35; }
.header-action { flex: 0 0 auto; }
.header-action .btn { min-height: 44px; padding-inline: 17px; font-size: 12px; }
.mobile-toggle { display: none; width: 45px; height: 45px; padding: 0; border: 1px solid rgba(255,255,255,.4); border-radius: 12px; background: transparent; color: var(--white); }
.mobile-toggle span, .mobile-toggle::before, .mobile-toggle::after { display: block; width: 18px; height: 2px; margin: auto; border-radius: 99px; background: currentColor; content: ""; transition: transform .18s ease, opacity .18s ease; }
.mobile-toggle::before { transform: translateY(-6px); }
.mobile-toggle::after { transform: translateY(4px); }
.mobile-toggle[aria-expanded="true"] span { opacity: 0; }
.mobile-toggle[aria-expanded="true"]::before { transform: translateY(2px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"]::after { transform: translateY(-2px) rotate(-45deg); }

.menu-scrim { position: fixed; z-index: 88; inset: 0; background: rgba(0,13,10,.5); opacity: 0; pointer-events: none; transition: opacity .22s ease; }
.menu-scrim.is-open { opacity: 1; pointer-events: auto; }
.mobile-drawer { position: fixed; z-index: 90; top: 0; right: 0; bottom: 0; width: min(100%, 420px); padding: 20px 24px 28px; overflow-y: auto; background: var(--deep); color: var(--white); box-shadow: -18px 0 56px rgba(0,13,10,.26); transform: translateX(104%); transition: transform .28s var(--ease); }
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer__top { display: flex; align-items: center; justify-content: space-between; min-height: 52px; }
.mobile-drawer__logo { width: 126px; }
.drawer-close { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 12px; background: transparent; color: var(--white); font-size: 27px; font-weight: 400; line-height: 1; }
.mobile-nav { display: grid; gap: 0; margin-top: 32px; }
.mobile-nav > a, .mobile-nav__button { display: flex; align-items: center; justify-content: space-between; width: 100%; min-height: 58px; padding: 10px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.13); background: transparent; color: var(--white); font-size: 18px; font-weight: 600; text-align: left; }
.mobile-nav__button svg { width: 16px; height: 16px; color: var(--lime); transition: transform .2s ease; }
.mobile-nav__group.is-open .mobile-nav__button svg { transform: rotate(180deg); }
.mobile-subnav { display: grid; max-height: 0; overflow: hidden; opacity: 0; padding-left: 16px; transition: max-height .26s var(--ease), opacity .2s ease, padding .2s ease; }
.mobile-nav__group.is-open .mobile-subnav { max-height: 360px; padding: 8px 0 14px 16px; opacity: 1; }
.mobile-subnav a { min-height: 43px; display: flex; align-items: center; color: var(--white-70); font-size: 15px; font-weight: 500; }
.mobile-subnav a:hover { color: var(--lime); }
.mobile-drawer__cta { margin-top: 30px; }
.mobile-drawer__cta .btn { width: 100%; }
.mobile-drawer__meta { margin: 30px 0 0; color: var(--white-58); font-size: 13px; }

.home-hero { position: relative; overflow: clip; background: linear-gradient(135deg, #102D26 0%, #1C3D36 47%, #0D4A3A 100%); color: var(--white); }
.home-hero::before, .home-hero::after { position: absolute; border-radius: 50%; content: ""; pointer-events: none; }
.home-hero::before { width: 680px; height: 680px; top: -400px; right: -260px; background: radial-gradient(circle, rgba(3,255,148,.19), transparent 66%); }
.home-hero::after { width: 440px; height: 440px; right: -170px; bottom: -310px; border: 1px solid rgba(3,255,148,.29); }
.home-hero .container { position: relative; z-index: 1; }
.home-hero__grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: clamp(46px, 7vw, 98px); min-height: 720px; padding: 86px 0 92px; }
.home-hero h1 { max-width: 11.8ch; font-size: clamp(3.35rem, 5.9vw, 6.15rem); }
.home-hero .lead { max-width: 635px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-top: 29px; color: var(--white-70); font-size: 13px; font-weight: 500; }
.hero-notes span { display: inline-flex; align-items: center; gap: 9px; }
.hero-notes span::before { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(3,255,148,.11); content: ""; }
.hero-stage { position: relative; min-height: 456px; }
.hero-stage::before { position: absolute; width: 98%; height: 86%; top: 7%; left: 2%; border: 1px solid rgba(255,255,255,.15); border-radius: 54% 46% 58% 42% / 48% 52% 48% 52%; content: ""; pointer-events: none; transform: rotate(-7deg); }
.hero-stage::after { position: absolute; width: 61%; height: 64%; right: -7%; bottom: -7%; border: 1px solid rgba(3,255,148,.45); border-radius: 30px; content: ""; pointer-events: none; transform: rotate(18deg); }
.video-shell { position: absolute; z-index: 2; top: 48px; right: 5%; width: min(100%, 548px); overflow: hidden; border: 1px solid rgba(255,255,255,.35); border-radius: 23px; background: #101414; box-shadow: var(--shadow-deep), 0 0 0 8px rgba(3,255,148,.04); transform: rotate(2deg); }
.video-shell__bar { display: flex; align-items: center; gap: 6px; height: 35px; padding: 0 13px; border-bottom: 1px solid rgba(255,255,255,.15); background: rgba(16,26,23,.94); }
.video-shell__bar i { width: 7px; height: 7px; border-radius: 99px; background: rgba(255,255,255,.45); }
.video-shell__bar span { margin-left: 6px; color: rgba(255,255,255,.66); font-size: 9px; font-weight: 500; }
.video-shell video { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #0D1512; }
.hero-float { position: absolute; z-index: 3; right: 0; bottom: 28px; width: 180px; padding: 17px 18px; border: 1px solid rgba(3,255,148,.55); border-radius: 18px; background: rgba(8,31,26,.86); box-shadow: 0 20px 38px rgba(0,13,10,.24); backdrop-filter: blur(14px); }
.hero-float strong { display: block; color: var(--lime); font-size: 13px; font-weight: 600; }
.hero-float span { display: block; margin-top: 4px; color: var(--white-70); font-size: 11px; line-height: 1.45; }

.page-hero { position: relative; overflow: clip; background: linear-gradient(126deg, var(--deep) 0%, #193C35 62%, #0C4B3B 100%); color: var(--white); }
.page-hero::before, .page-hero::after { position: absolute; content: ""; pointer-events: none; }
.page-hero::before { width: 430px; height: 430px; top: -230px; right: 8%; border: 1px solid rgba(3,255,148,.38); border-radius: 50%; }
.page-hero::after { width: 600px; height: 600px; top: -410px; right: -230px; border-radius: 50%; background: radial-gradient(circle, rgba(3,255,148,.15), transparent 68%); }
.page-hero .container { position: relative; z-index: 1; padding: clamp(74px, 9vw, 124px) 0; }
.page-hero__inner { max-width: 870px; }
.page-hero h1 { max-width: 14ch; font-size: clamp(2.7rem, 4.45vw, 4.85rem); }
.page-hero .lead { max-width: 760px; }

.split-heading { display: grid; grid-template-columns: minmax(0, .92fr) minmax(280px, .62fr); align-items: end; gap: 40px; }
.split-heading .lead { margin: 0; }
.services-grid { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; margin-top: 42px; }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 290px; padding: 27px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 3px 0 rgba(0,115,89,.015); transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease; }
.service-card::before { position: absolute; right: -46px; bottom: -50px; width: 140px; height: 140px; border-radius: 50%; background: radial-gradient(circle, rgba(3,255,148,.16), transparent 66%); content: ""; pointer-events: none; }
.service-card:hover { border-color: rgba(0,115,89,.38); box-shadow: var(--shadow); transform: translateY(-5px); }
.service-card__icon { display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 24px; border-radius: 14px; background: rgba(0,115,89,.09); color: var(--green); }
.service-card__icon svg { width: 22px; height: 22px; }
.service-card h3 { color: var(--deep); }
.service-card p { margin: 13px 0 25px; color: var(--ink-soft); font-size: 14px; line-height: 1.64; }
.service-card .text-link { margin-top: auto; }

.why-grid { display: grid; grid-template-columns: minmax(320px,.92fr) minmax(0,1.08fr); gap: 26px; align-items: stretch; }
.why-panel { position: relative; overflow: hidden; min-height: 530px; padding: clamp(30px,4vw,52px); border-radius: var(--radius-lg); background: linear-gradient(145deg, #1D4A40 0%, #113C34 62%, #0C3A31 100%); color: var(--white); box-shadow: var(--shadow-deep); }
.why-panel::before { position: absolute; width: 420px; height: 420px; right: -220px; bottom: -235px; border: 1px solid rgba(3,255,148,.34); border-radius: 50%; content: ""; }
.why-panel::after { position: absolute; width: 220px; height: 220px; top: -120px; right: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(3,255,148,.18), transparent 69%); content: ""; }
.why-panel > * { position: relative; z-index: 1; }
.why-panel h2 { max-width: 11.5ch; }
.why-panel p:not(.eyebrow) { max-width: 470px; margin: 24px 0 0; color: var(--white-82); font-size: 16px; }
.feature-list { display: grid; gap: 14px; margin: 34px 0 0; padding: 0; list-style: none; color: var(--white-82); font-size: 14px; font-weight: 500; }
.feature-list li { display: flex; align-items: center; gap: 11px; }
.feature-list li::before { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--lime); color: var(--deep); font-size: 11px; font-weight: 700; content: "✓"; }
.reason-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.reason-card { min-height: 257px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.78); box-shadow: 0 4px 20px rgba(0,13,10,.03); }
.reason-card__mark { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 27px; border-radius: 14px; background: rgba(3,255,148,.16); color: var(--green); }
.reason-card__mark svg { width: 21px; height: 21px; }
.reason-card h3 { color: var(--deep); }
.reason-card p { margin: 12px 0 0; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }

.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 42px; }
.work-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 4px 21px rgba(0,13,10,.04); transition: transform .25s var(--ease), box-shadow .25s ease; }
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.work-card__visual { position: relative; min-height: 250px; overflow: hidden; padding: 28px; background: linear-gradient(135deg, #E5F6EE, #BCE5D3); }
.work-card__visual::before { position: absolute; width: 175px; height: 175px; right: -48px; top: -50px; border: 1px solid rgba(0,115,89,.28); border-radius: 50%; content: ""; }
.work-card__visual--skin { background: linear-gradient(135deg,#F7EBE7,#E9C3B5); }
.work-card__visual--restaurant { background: linear-gradient(135deg,#232320,#A8552F); }
.work-card__visual--clinic { background: linear-gradient(135deg,#E0F2F5,#72B9BE); }
.work-card__visual--property { background: linear-gradient(135deg,#F1EEE7,#C9A66D); }
.work-card__visual--studio { background: linear-gradient(135deg,#E9E4F8,#A995D7); }
.mock-screen { position: relative; z-index: 1; min-height: 193px; padding: 15px; border: 1px solid rgba(255,255,255,.44); border-radius: 13px; background: rgba(20,44,38,.88); box-shadow: 0 18px 36px rgba(0,13,10,.25); }
.mock-screen__bar { display: flex; gap: 5px; }
.mock-screen__bar i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.52); }
.mock-screen__title { margin-top: 27px; color: var(--white); font-size: 26px; font-weight: 600; line-height: .95; letter-spacing: -.05em; }
.mock-screen__title span { color: var(--lime); }
.mock-screen__lines { display: grid; gap: 6px; width: 60%; margin-top: 17px; }
.mock-screen__lines i { display: block; height: 5px; border-radius: 99px; background: rgba(255,255,255,.38); }
.mock-screen__lines i:last-child { width: 69%; }
.work-card__body { padding: 25px; }
.card-label { display: block; margin-bottom: 13px; color: var(--green); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.work-card h3 { color: var(--deep); }
.work-card p { margin: 13px 0 22px; color: var(--ink-soft); font-size: 14px; }

.testimonial-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; margin-top: 42px; }
.testimonial { padding: 27px; border: 1px solid var(--line-dark); border-radius: var(--radius-md); background: rgba(255,255,255,.055); }
.testimonial blockquote { margin: 0; color: var(--white-82); font-size: 15px; font-weight: 400; line-height: 1.72; }
.testimonial footer { margin-top: 25px; color: var(--lime); font-size: 13px; font-weight: 600; }
.testimonial footer span { display: block; margin-top: 3px; color: var(--white-58); font-size: 11px; font-weight: 400; }

.faq { display: grid; gap: 12px; max-width: 850px; margin-top: 40px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; cursor: pointer; color: var(--deep); font-size: 16px; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { flex: 0 0 auto; color: var(--green); font-size: 22px; font-weight: 400; content: "⌄"; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(180deg); }
.faq p { margin: 0; padding: 0 22px 21px; color: var(--ink-soft); font-size: 14px; }

.cta-band { position: relative; overflow: hidden; padding: clamp(32px,4.5vw,54px); border-radius: var(--radius-lg); background: linear-gradient(130deg,#CFF6E0,#E9FBF1 56%,#C4F5E0); }
.cta-band::before { position: absolute; width: 340px; height: 340px; top: -210px; right: -100px; border: 1px solid rgba(0,115,89,.29); border-radius: 50%; content: ""; pointer-events: none; }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 28px; }
.cta-band h2 { color: var(--deep); max-width: 15ch; }
.cta-band .btn-row { margin: 0; }

.service-overview { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(30px,5vw,70px); align-items: start; }
.service-list { display: grid; gap: 12px; }
.service-list article { padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.service-list h3 { color: var(--deep); font-size: 18px; }
.service-list p { margin: 7px 0 0; color: var(--ink-soft); font-size: 14px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--deep); font-size: 12px; font-weight: 500; }
.art-card { position: sticky; top: 105px; min-height: 380px; overflow: hidden; padding: 32px; border-radius: var(--radius-lg); background: linear-gradient(145deg, #163E35, #0D2E27); color: var(--white); }
.art-card::before,.art-card::after { position:absolute; border-radius:50%; content:""; pointer-events:none; }
.art-card::before { width: 350px; height:350px; right:-170px; top:-170px; border:1px solid rgba(3,255,148,.38); }
.art-card::after { width: 220px; height:220px; left:-100px; bottom:-110px; background:radial-gradient(circle,rgba(3,255,148,.2),transparent 66%); }
.art-card__window { position:absolute; z-index:1; width:78%; right:10%; bottom:35px; padding:23px; border:1px solid rgba(255,255,255,.24); border-radius:19px; background:rgba(255,255,255,.07); transform:rotate(-5deg); }
.art-card__window strong { display:block; color:var(--lime); font-size:27px; font-weight:600; letter-spacing:-.05em; line-height:.98; }
.art-card__window span { display:block; margin-top:13px; color:var(--white-70); font-size:12px; }
.art-card p { position:relative; z-index:1; max-width:20ch; margin:0; color:var(--white-82); font-size:15px; }

.case-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:clamp(32px,5vw,72px); align-items:start; }
.case-visual { min-height:390px; padding:36px; border-radius:var(--radius-lg); background:linear-gradient(135deg,#DFEEE8,#A5D5BE); }
.case-visual--skin { background:linear-gradient(135deg,#F3E1DB,#D9AA96); }
.case-visual--restaurant { background:linear-gradient(135deg,#302820,#B25D36); }
.case-visual--clinic { background:linear-gradient(135deg,#E0F2F5,#6BB9C0); }
.case-visual--property { background:linear-gradient(135deg,#F4F0E8,#C4A16C); }
.case-visual--studio { background:linear-gradient(135deg,#EDE9F8,#A290CB); }
.case-visual .mock-screen { min-height:315px; }
.case-copy h2 { color:var(--deep); }
.case-copy h3 { margin-top:30px; color:var(--deep); font-size:16px; letter-spacing:-.03em; }
.case-copy p { color:var(--ink-soft); }
.case-note { margin-top:26px; padding:17px; border-left:3px solid var(--lime); border-radius:0 10px 10px 0; background:#F3FAF6; color:var(--ink-soft); font-size:14px; }

.values { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.value { padding:27px; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--white); }
.value h3 { margin-top:11px; color:var(--deep); }
.value p { margin:12px 0 0; color:var(--ink-soft); font-size:14px; }
.value span { color:var(--green); font-size:12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; }

.article-list { display:grid; gap:18px; }
.article-card { display:grid; grid-template-columns:190px minmax(0,1fr); gap:28px; align-items:center; padding:23px; border:1px solid var(--line); border-radius:var(--radius-md); background:var(--white); transition:box-shadow .2s ease, transform .2s ease; }
.article-card:hover { box-shadow:var(--shadow); transform:translateY(-3px); }
.article-card__visual { min-height:126px; display:flex; align-items:end; padding:18px; border-radius:14px; background:linear-gradient(135deg,#18473B,#0B2C25); color:var(--lime); font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; }
.article-card h2 { max-width:25ch; color:var(--deep); font-size:clamp(1.35rem,2.4vw,2rem); }
.article-card p { margin:12px 0 17px; color:var(--ink-soft); font-size:14px; }
.article { max-width:780px; }
.article h2 { margin-top:36px; color:var(--deep); font-size:clamp(1.5rem,2.5vw,2.15rem); }
.article p { color:var(--ink-soft); }

.contact-grid { display:grid; grid-template-columns:minmax(0,.82fr) minmax(410px,1.18fr); gap:clamp(36px,6vw,90px); align-items:start; }
.contact-points { display:grid; gap:12px; margin-top:30px; }
.contact-point { padding:18px; border:1px solid var(--line); border-radius:16px; background:var(--white); }
.contact-point b { display:block; color:var(--deep); font-size:13px; font-weight:600; }
.contact-point a, .contact-point span { display:block; margin-top:4px; color:var(--ink-soft); font-size:14px; }
.form-shell { padding:clamp(27px,4vw,42px); border:1px solid var(--line); border-radius:var(--radius-lg); background:#F7FBF8; box-shadow:var(--shadow); }
.form-shell h2 { color:var(--deep); font-size:clamp(1.8rem,3vw,2.75rem); }
.form-shell > p:not(.eyebrow) { color:var(--ink-soft); font-size:14px; }
.form-message { margin:22px 0; padding:13px 15px; border-radius:12px; font-size:13px; font-weight:500; }
.form-message--error { border:1px solid rgba(159,45,45,.27); background:#FFF0F0; color:#8A2828; }
.form-message--success { border:1px solid rgba(0,115,89,.25); background:#ECFFF6; color:#075B47; }
.form-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:15px; margin-top:25px; }
.field { display:grid; gap:7px; }
.field--full { grid-column:1/-1; }
.field label { color:var(--deep); font-size:12px; font-weight:600; }
.field input,.field select,.field textarea { width:100%; min-height:48px; padding:12px 13px; border:1px solid rgba(28,61,54,.22); border-radius:11px; background:var(--white); color:var(--ink); font-size:14px; outline:none; transition:border-color .18s ease, box-shadow .18s ease; }
.field textarea { min-height:126px; resize:vertical; }
.field input:focus,.field select:focus,.field textarea:focus { border-color:var(--green); box-shadow:0 0 0 4px rgba(3,255,148,.16); }
.honeypot { position:absolute; left:-9999px; width:1px; height:1px; opacity:0; pointer-events:none; }
.form-help { margin:15px 0 0; color:var(--ink-soft); font-size:12px; }

.thankyou { min-height:calc(100vh - 76px); display:grid; place-items:center; padding:80px 0; background:linear-gradient(130deg,var(--deep),#0D4436); color:var(--white); }
.thankyou-card { width:min(700px, var(--container)); padding:clamp(32px,5vw,56px); border:1px solid rgba(255,255,255,.2); border-radius:var(--radius-lg); background:rgba(7,32,27,.42); text-align:center; box-shadow:var(--shadow-deep); }
.thankyou-card h1 { max-width:none; }
.thankyou-card p { max-width:560px; margin:23px auto 0; color:var(--white-82); }
.thankyou-card .btn-row { justify-content:center; }

.site-footer { padding:72px 0 24px; background:#0D2F28; color:var(--white); }
.footer-grid { display:grid; grid-template-columns:1.25fr .8fr .9fr 1fr; gap:38px; }
.footer-brand p { max-width:310px; margin:18px 0 0; color:var(--white-70); font-size:14px; }
.footer-brand .btn { margin-top:25px; }
.footer-title { margin:0 0 16px; color:var(--lime); font-size:12px; font-weight:600; letter-spacing:.09em; text-transform:uppercase; }
.footer-links { display:grid; gap:9px; color:var(--white-70); font-size:13px; }
.footer-links a:hover { color:var(--lime); }
.footer-bottom { display:flex; justify-content:space-between; gap:16px; margin-top:54px; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); color:var(--white-58); font-size:11px; }

.reveal { opacity:0; transform:translateY(16px); transition:opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity:1; transform:none; }
@keyframes float { 50% { transform:translateY(-10px); } }
@keyframes breathe { 50% { transform:scale(1.04); opacity:.85; } }
.hero-float { animation:float 5.5s var(--ease) infinite; }
.home-hero::before { animation:breathe 9s ease-in-out infinite; }

@media (max-width: 1080px) {
  .desktop-nav { gap:15px; font-size:12px; }
  .brand { width:112px; }
  .services-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .home-hero__grid { grid-template-columns:minmax(0,1fr) minmax(370px,.85fr); gap:36px; }
  .footer-grid { grid-template-columns:1.35fr .8fr .95fr; }
  .footer-grid > :last-child { grid-column:1/-1; }
}
@media (max-width: 880px) {
  .desktop-nav, .header-action { display:none; }
  .mobile-toggle { display:block; }
  .home-hero__grid,.why-grid,.service-overview,.case-grid,.contact-grid { grid-template-columns:1fr; }
  .home-hero__grid { min-height:auto; padding:76px 0 70px; }
  .hero-stage { width:min(100%,600px); min-height:420px; margin-inline:auto; }
  .split-heading { grid-template-columns:1fr; gap:22px; }
  .art-card { position:relative; top:auto; min-height:340px; }
  .work-grid,.testimonial-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .services-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .footer-grid > :last-child { grid-column:auto; }
}
@media (max-width: 580px) {
  :root { --container: min(100% - 32px, 1180px); }
  body { font-size:15px; }
  .header-inner { min-height:68px; }
  .brand { width:103px; }
  h1 { font-size:clamp(2.45rem, 11vw, 3.3rem); letter-spacing:-.056em; }
  .home-hero h1 { font-size:clamp(2.8rem, 12.4vw, 3.75rem); }
  h2 { font-size:clamp(1.9rem,8.8vw,2.6rem); }
  .home-hero__grid { padding:62px 0 58px; }
  .home-hero .lead { font-size:16px; }
  .hero-notes { display:grid; gap:10px; margin-top:27px; }
  .hero-stage { min-height:285px; margin-top:6px; }
  .video-shell { top:28px; right:2%; width:96%; border-radius:16px; }
  .hero-float { right:0; bottom:0; width:157px; padding:13px 14px; border-radius:14px; }
  .home-hero::after { display:none; }
  .page-hero .container { padding:66px 0 70px; }
  .page-hero::before { width:250px; height:250px; top:-130px; right:-80px; }
  .btn-row { margin-top:28px; }
  .btn { width:100%; min-height:50px; }
  .cta-band__inner { display:block; }
  .cta-band .btn-row { margin-top:26px; }
  .services-grid,.work-grid,.testimonial-grid,.reason-grid,.values { grid-template-columns:1fr; }
  .service-card { min-height:250px; }
  .why-panel { min-height:auto; }
  .reason-card { min-height:205px; }
  .article-card { grid-template-columns:1fr; gap:18px; }
  .article-card__visual { min-height:96px; }
  .form-grid { grid-template-columns:1fr; }
  .field--full { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .footer-bottom { display:grid; margin-top:40px; }
  .site-footer { padding-top:55px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; transition-duration:.01ms !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; }
  .reveal { opacity:1; transform:none; }
}


/* Live motion gradients for every page banner — safe for mouse, touch and scrolling. */
.home-hero,
.page-hero,
.thankyou {
  --gradient-x: 72%;
  --gradient-y: 24%;
  --gradient-strength: .19;
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(82% 112% at var(--gradient-x) var(--gradient-y), rgba(3,255,148,var(--gradient-strength)) 0%, rgba(3,255,148,.08) 32%, transparent 68%),
    radial-gradient(70% 112% at 4% 112%, rgba(0,115,89,.48) 0%, transparent 73%),
    linear-gradient(120deg, #0B2D26 0%, #1C3D36 42%, #0D4A3A 72%, #133E35 100%);
  background-size: 100% 100%, 100% 100%, 180% 180%;
  background-position: center, center, 0% 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
  transition: box-shadow .4s ease;
  animation: banner-gradient-flow 16s ease-in-out infinite alternate;
}
.home-hero.is-gradient-active,
.page-hero.is-gradient-active,
.thankyou.is-gradient-active {
  --gradient-strength: .31;
  box-shadow: inset 0 0 0 1px rgba(3,255,148,.19), inset 0 0 130px rgba(3,255,148,.10);
}
.home-hero::before,
.page-hero::before,
.thankyou::before {
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.home-hero::after,
.page-hero::after,
.thankyou::after {
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}
.home-hero::before {
  background: radial-gradient(circle, rgba(3,255,148,.24), rgba(3,255,148,.06) 36%, transparent 68%);
  opacity: .9;
  animation: banner-glow-drift 13s ease-in-out infinite alternate;
}
.home-hero::after {
  opacity: .82;
  animation: banner-outline-drift 15s ease-in-out infinite alternate;
}
.page-hero::before {
  border-color: rgba(3,255,148,.42);
  opacity: .82;
  animation: banner-outline-drift 14s ease-in-out infinite alternate;
}
.page-hero::after {
  background: radial-gradient(circle, rgba(3,255,148,.22), rgba(3,255,148,.06) 36%, transparent 68%);
  opacity: .88;
  animation: banner-glow-drift 16s ease-in-out infinite alternate-reverse;
}
.thankyou::before,
.thankyou::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}
.thankyou::before {
  width: min(72vw, 760px);
  height: min(72vw, 760px);
  top: -48%;
  right: -18%;
  background: radial-gradient(circle, rgba(3,255,148,.24), rgba(3,255,148,.06) 38%, transparent 68%);
  animation: banner-glow-drift 14s ease-in-out infinite alternate;
}
.thankyou::after {
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  bottom: -35%;
  left: -9%;
  border: 1px solid rgba(3,255,148,.34);
  animation: banner-outline-drift 15s ease-in-out infinite alternate-reverse;
}
.thankyou-card { position: relative; z-index: 1; }

@keyframes banner-gradient-flow {
  0%   { background-position: center, center, 0% 50%; }
  48%  { background-position: center, center, 62% 42%; }
  100% { background-position: center, center, 100% 58%; }
}
@keyframes banner-glow-drift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(.94); }
  100% { transform: translate3d(8%, 9%, 0) scale(1.10); }
}
@keyframes banner-outline-drift {
  0%   { transform: translate3d(0, 0, 0) rotate(-8deg); }
  100% { transform: translate3d(-7%, 10%, 0) rotate(12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero,
  .page-hero,
  .thankyou,
  .home-hero::before,
  .home-hero::after,
  .page-hero::before,
  .page-hero::after,
  .thankyou::before,
  .thankyou::after {
    animation: none !important;
  }
}


/* Final image polish: full-section visuals and proper insight thumbnails. */
.section-image-card {
  position: sticky;
  top: 105px;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--deep);
  box-shadow: var(--shadow);
}
.section-image-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}
.section-image-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0,13,10,.45) 100%);
  content: "";
  pointer-events: none;
}
.image-chip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(7,32,27,.72);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(0,13,10,.18);
  backdrop-filter: blur(14px);
}
.image-chip strong { color: var(--lime); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.image-chip span { color: var(--white-70); font-size: 12px; }
.article-card__visual {
  position: relative;
  min-height: 142px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(28,61,54,.10);
  background: var(--deep);
  color: var(--white);
}
.article-card__visual img {
  width: 100%;
  height: 100%;
  min-height: 142px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}
.article-card__visual span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0,13,10,.62);
  color: var(--lime);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.article-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0,13,10,.42) 100%);
  content: "";
  pointer-events: none;
}
@media (max-width: 880px) {
  .section-image-card { position: relative; top: auto; min-height: 330px; }
  .section-image-card img { min-height: 330px; }
}
@media (max-width: 580px) {
  .section-image-card { min-height: 250px; border-radius: 24px; }
  .section-image-card img { min-height: 250px; }
  .image-chip { left: 14px; right: 14px; bottom: 14px; display: grid; gap: 3px; }
  .article-card__visual, .article-card__visual img { min-height: 190px; }
}


/* Final required real-image pass: proper fitted section images and insight images. */
.section-image-card img,
.article-card__visual img,
.insight-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-image-card {
  isolation: isolate;
}
.section-image-card img {
  min-height: 430px;
}
.article-card__visual {
  min-height: 164px;
  border-radius: 16px;
}
.article-card__visual img {
  min-height: 164px;
}
.section--visual-lead {
  padding-top: clamp(34px, 5vw, 60px);
  padding-bottom: 0;
}
.insight-feature-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--deep);
  box-shadow: var(--shadow);
}
.insight-feature-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,13,10,.34) 100%);
  content: "";
  pointer-events: none;
}
@media (max-width: 880px) {
  .insight-feature-image { min-height: 290px; }
  .article-card__visual, .article-card__visual img { min-height: 210px; }
}
@media (max-width: 580px) {
  .insight-feature-image { min-height: 230px; border-radius: 24px; }
  .article-card__visual, .article-card__visual img { min-height: 190px; }
}


/* User supplied image pass: real fitted images, no placeholder visuals. */
.work-card__visual,
.case-visual {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--deep);
}
.work-card__visual img,
.case-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.work-card__visual img { min-height: 285px; }
.case-visual img { min-height: 390px; }
.case-visual::after,
.work-card__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 60%, rgba(0,13,10,.20) 100%);
}
.section-image-card img[src$="service-paid.webp"],
.article-card__visual img[src$="insight-social-system.webp"] { object-position: center; }
.section-image-card img[src$="about-approach.webp"] { object-position: center; }
@media (max-width: 580px) {
  .work-card__visual img { min-height: 220px; }
  .case-visual img { min-height: 260px; }
}
