/* Nikklab modern landing page */
:root {
  --bg: #f2f0e9;
  --paper: #f8f7f2;
  --ink: #151713;
  --muted: #6d7068;
  --line: rgba(21, 23, 19, 0.13);
  --lime: #cbff65;
  --lilac: #d9d2ff;
  --sand: #efd9bb;
  --dark: #171a16;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(28, 31, 24, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img, svg { max-width: 100%; }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.section-shell {
  width: min(1420px, calc(100% - 80px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1420px, calc(100% - 32px));
  height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px 0 18px;
  border: 1px solid transparent;
  border-radius: 20px;
  transition: .35s ease;
}
.site-header.scrolled {
  background: rgba(248, 247, 242, .82);
  border-color: rgba(21, 23, 19, .09);
  box-shadow: 0 12px 35px rgba(30, 33, 26, .08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font: 600 17px/1 "Manrope", sans-serif;
  letter-spacing: -.04em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #50534d;
  font-size: 14px;
}
.desktop-nav a, .site-footer nav a { transition: color .2s ease; }
.desktop-nav a:hover, .site-footer nav a:hover { color: #000; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px 11px 19px;
  border-radius: 13px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 600;
}
.header-cta span { color: var(--lime); }

.menu-toggle, .mobile-nav { display: none; }

.hero {
  min-height: 100vh;
  padding-top: 190px;
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  grid-template-rows: 1fr auto;
  column-gap: 70px;
}

.eyebrow {
  margin: 0 0 27px;
  color: #5e6259;
  font: 600 11px/1.2 "Manrope", sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #7bb52b;
  box-shadow: 0 0 0 5px rgba(123, 181, 43, .12);
}

.hero h1, .section-heading h2, .studio-heading h2, .contact-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .96;
}
.hero h1 { font-size: clamp(62px, 7.3vw, 124px); max-width: 910px; }
.hero h1 em, .section-heading h2 em, .studio-heading h2 em, .contact-copy h2 em {
  font-family: "Newsreader", serif;
  font-weight: 400;
  letter-spacing: -.05em;
}

.hero-description {
  max-width: 590px;
  margin: 36px 0 0;
  color: #5f625b;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.6;
}
.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0,0,0,.12); }
.button-dark { background: var(--ink); color: white; }
.button-dark span { color: var(--lime); }
.text-link {
  display: inline-flex;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.hero-art {
  min-height: 580px;
  position: relative;
  align-self: center;
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  top: 0;
  right: 2%;
  border-radius: 50%;
  background: var(--lime);
  opacity: .9;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(21, 23, 19, .12);
  border-radius: 50%;
}
.orbit-one { width: 630px; height: 630px; top: -45px; right: -45px; }
.orbit-two { width: 730px; height: 730px; top: -95px; right: -95px; opacity: .5; }

.floating-card {
  position: absolute;
  background: rgba(255,255,255,.91);
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}
.mail-card {
  width: min(440px, 73%);
  top: 40px;
  right: 8%;
  padding: 19px;
  border-radius: 25px;
  transform: rotate(2.5deg);
}
.card-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
}
.mini-brand {
  width: 27px; height: 27px; display: grid; place-items: center;
  border-radius: 8px; background: #1c211b; color: white;
}
.card-pill, .privacy-chip {
  padding: 6px 9px;
  border-radius: 999px;
  background: #eff1ec;
  color: #60645d;
  font-size: 9px;
}
.mail-summary, .assistant-box {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin-bottom: 7px;
  border-radius: 14px;
  background: #f2f0ff;
}
.mail-summary .spark { color: #7462d4; }
.mail-summary strong, .mail-row strong { display: block; font-size: 11px; }
.mail-summary p, .mail-row p { margin: 3px 0 0; color: #777a74; font-size: 9px; }
.mail-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 6px;
  border-bottom: 1px solid #ecece8;
}
.mail-row:last-child { border: 0; }
.mail-row time { color: #999b95; font-size: 8px; }
.avatar {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 9px; background: #d9f1df; color: #31533a;
  font-size: 9px; font-weight: 700;
}
.avatar-lilac { background: var(--lilac); color: #554a8f; }
.avatar-sand { background: var(--sand); color: #6c5434; }

.journal-card {
  width: min(390px, 67%);
  right: 39%;
  bottom: 18px;
  padding: 21px;
  border-radius: 25px;
  transform: rotate(-4deg);
}
.journal-head { display: flex; justify-content: space-between; align-items: end; }
.journal-head small { display: block; color: #888b84; font-size: 8px; letter-spacing: .12em; }
.journal-head strong { display: block; margin-top: 5px; font-size: 17px; }
.journal-head > span { color: #4d7715; font-size: 19px; font-weight: 700; }
.mini-chart { height: 105px; margin-top: 12px; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: #7baa2d; stroke-width: 3; stroke-linecap: round; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-row span {
  padding: 6px 8px; border: 1px solid #e6e6e0; border-radius: 7px;
  color: #656861; font-size: 8px;
}
.hero-stamp {
  position: absolute;
  right: -10px;
  bottom: 45px;
  width: 112px; height: 112px;
  display: grid; place-content: center;
  border-radius: 50%;
  border: 1px solid rgba(21, 23, 19, .3);
  background: var(--bg);
  text-align: center;
  transform: rotate(8deg);
  font: 600 9px/1.7 "Manrope", sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-meta {
  grid-column: 1 / -1;
  margin-top: 70px;
  padding: 29px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-meta div { display: flex; flex-direction: column; gap: 8px; }
.hero-meta span { color: #858880; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.hero-meta strong { font-size: 13px; font-weight: 500; }

.work-section { padding: 155px 0 170px; background: var(--paper); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 95px;
}
.section-heading h2, .studio-heading h2, .contact-copy h2 {
  font-size: clamp(54px, 6vw, 94px);
}
.section-intro {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.project {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: clamp(55px, 7vw, 110px);
  align-items: center;
  padding: 70px 0 120px;
  border-top: 1px solid var(--line);
}
.project-journal { grid-template-columns: .6fr 1.4fr; }
.project-visual {
  min-width: 0;
  padding: clamp(25px, 4vw, 58px);
  border-radius: var(--radius);
  background: #dcd8ff;
  overflow: hidden;
}
.project-journal .project-visual { background: #d8f198; }

.browser {
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 18px;
  background: white;
  box-shadow: 0 30px 65px rgba(44, 39, 82, .18);
  transform: rotate(-1.2deg);
  transition: transform .5s ease;
}
.project:hover .browser { transform: rotate(0) scale(1.012); }
.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: #f5f5f3;
  border-bottom: 1px solid #ebebe8;
}
.browser-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #dadad5; }
.browser-url {
  width: 42%;
  margin-left: auto; margin-right: auto;
  padding: 5px 10px;
  border-radius: 6px;
  background: #eaeae6;
  color: #969991;
  text-align: center;
  font-size: 7px;
}
.mail-app { min-height: 430px; display: grid; grid-template-columns: 145px 1fr; }
.mail-sidebar { padding: 19px 15px; background: #f4f4f0; }
.mail-logo {
  width: 27px; height: 27px; display: grid; place-items: center;
  border-radius: 8px; background: #181b17; color: white; font-size: 10px; font-weight: 700;
}
.compose {
  width: 100%; margin: 22px 0 18px; padding: 9px;
  border: 0; border-radius: 8px; background: #181b17; color: white; text-align: left; font-size: 8px;
}
.mail-sidebar ul { padding: 0; margin: 0; list-style: none; }
.mail-sidebar li {
  display: flex; justify-content: space-between;
  padding: 8px; border-radius: 7px; color: #74776f; font-size: 8px;
}
.mail-sidebar li.active { background: white; color: #171a16; font-weight: 600; }
.mail-list { padding: 26px; }
.inbox-header { display: flex; align-items: center; justify-content: space-between; }
.inbox-header small, .dashboard-top small, .performance-card small, .mistake-card small {
  color: #9b9d97; font-size: 7px; letter-spacing: .13em;
}
.inbox-header h3 { margin: 4px 0 0; font-size: 19px; }
.privacy-chip { color: #60715c; background: #edf3e9; }
.assistant-box { margin-top: 18px; background: #f0edff; align-items: flex-start; }
.assistant-box p { margin: 0; font-size: 9px; line-height: 1.5; }
.assistant-box > span { color: #715ad2; }
.email-item {
  display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center;
  padding: 15px 3px; border-bottom: 1px solid #efefeb;
}
.email-item strong { font-size: 9px; }
.email-item p { margin: 3px 0 0; color: #858880; font-size: 8px; }
.email-item time { color: #a1a39e; font-size: 7px; }

.project-copy { max-width: 475px; }
.project-number {
  width: 41px; height: 41px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  color: #70736c; font-size: 11px;
}
.project-label {
  margin: 35px 0 19px;
  color: #70736c;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.project-copy h3 {
  margin: 0;
  font: 500 clamp(42px, 4vw, 68px)/1 "Manrope", sans-serif;
  letter-spacing: -.065em;
}
.project-copy > p:not(.project-label) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.project-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #666960;
  font-size: 9px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}
.project-link span { transition: transform .2s ease; }
.project-link:hover span { transform: translate(4px, -4px); }

.journal-dashboard {
  padding: clamp(22px, 3vw, 38px);
  border-radius: 19px;
  background: #171a16;
  color: white;
  box-shadow: 0 30px 65px rgba(30, 50, 10, .25);
  transform: rotate(1.2deg);
  transition: transform .5s ease;
}
.project:hover .journal-dashboard { transform: rotate(0) scale(1.012); }
.dashboard-top { display: flex; justify-content: space-between; align-items: center; }
.dashboard-top h3 { margin: 5px 0 0; font-size: 18px; }
.profit-badge {
  padding: 8px 11px; border-radius: 9px; background: rgba(203, 255, 101, .12);
  color: var(--lime); font-size: 12px; font-weight: 700;
}
.dashboard-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 25px; }
.metric-card, .performance-card, .mistake-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: #1e221d;
}
.metric-card { padding: 14px; }
.metric-card span { display: block; color: #989d94; font-size: 7px; }
.metric-card strong { display: block; margin: 8px 0 4px; font-size: 18px; }
.metric-card small { color: #c5c9c0; font-size: 7px; }
.performance-card { margin-top: 9px; padding: 18px; }
.performance-head { display: flex; justify-content: space-between; align-items: end; }
.performance-head strong { display: block; margin-top: 4px; font-size: 20px; }
.legend { color: #969a92; font-size: 7px; }
.legend span { display: inline-block; width: 6px; height: 6px; margin-right: 5px; border-radius: 2px; background: var(--lime); }
.bars { height: 130px; display: flex; align-items: end; gap: 8px; margin-top: 18px; }
.bars i {
  flex: 1; height: var(--h); min-width: 8px; border-radius: 4px 4px 1px 1px;
  background: linear-gradient(to top, rgba(203,255,101,.22), var(--lime));
}
.bars i.down { background: linear-gradient(to top, rgba(255,145,123,.22), #ff917b); }
.mistake-card { display: flex; justify-content: space-between; align-items: center; margin-top: 9px; padding: 15px 17px; }
.mistake-card strong { display: block; margin-top: 5px; font-size: 10px; }
.mistake-card > span { color: #ff9b87; font-size: 13px; font-weight: 700; }

.studio-section {
  padding: 160px 0;
  background: var(--dark);
  color: #f4f3ed;
}
.studio-grid { display: grid; grid-template-columns: .8fr 1.2fr; column-gap: 130px; }
.eyebrow.light { color: #9da099; }
.studio-heading h2 { color: white; }
.studio-heading h2 em { color: var(--lime); }
.studio-quote {
  max-width: 680px;
  margin: 40px 0 100px;
  font: 400 clamp(26px, 3.1vw, 46px)/1.2 "Newsreader", serif;
  letter-spacing: -.035em;
  color: #d7d8d2;
}
.principles { grid-column: 2; }
.principles article {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.principles article:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.principles article > span { color: var(--lime); font-size: 10px; }
.principles h3 { margin: 0 0 9px; font: 500 20px/1.2 "Manrope", sans-serif; }
.principles p { max-width: 560px; margin: 0; color: #999d96; font-size: 14px; line-height: 1.65; }

.contact-section { padding: 145px 0; background: var(--bg); }
.contact-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 100px;
  padding: clamp(36px, 6vw, 85px);
  border-radius: 32px;
  background: var(--lime);
}
.contact-copy > p:not(.eyebrow) { max-width: 500px; margin: 28px 0; color: #46522f; line-height: 1.7; }
.contact-copy > a { display: inline-block; border-bottom: 1px solid rgba(0,0,0,.35); padding-bottom: 5px; font-weight: 600; }
.contact-form {
  padding: clamp(25px, 4vw, 45px);
  border-radius: 24px;
  background: #f8f7f2;
  box-shadow: 0 25px 60px rgba(65, 85, 26, .15);
}
.contact-form label { display: block; margin-bottom: 22px; }
.contact-form label span {
  display: block;
  margin-bottom: 8px;
  color: #71756d;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid #d8d9d3;
  outline: none;
  resize: vertical;
  background: transparent;
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); }
.contact-form .button { margin-top: 10px; }

.site-footer { padding: 55px 0; background: var(--paper); border-top: 1px solid var(--line); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto;
  gap: 60px;
  align-items: start;
}
.site-footer p { margin: 0; color: #777a73; font-size: 12px; line-height: 1.7; }
.site-footer nav { display: flex; gap: 25px; font-size: 12px; }
.copyright { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.65,.25,1), transform .8s cubic-bezier(.2,.65,.25,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .section-shell { width: min(100% - 44px, 1050px); }
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 900px; }
  .hero-art { width: min(780px, 100%); margin: 70px auto 0; }
  .hero-meta { margin-top: 45px; }
  .project, .project-journal { grid-template-columns: 1fr; }
  .project-journal .project-copy { order: 2; }
  .project-copy { max-width: 720px; }
  .studio-grid { column-gap: 65px; }
  .contact-card { gap: 50px; }
}

@media (max-width: 760px) {
  .section-shell { width: calc(100% - 30px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .desktop-cta { display: none; }
  .menu-toggle {
    justify-self: end;
    width: 42px; height: 42px;
    display: grid; place-content: center; gap: 6px;
    border: 1px solid var(--line); border-radius: 12px; background: rgba(248,247,242,.75);
    cursor: pointer;
  }
  .menu-toggle span { width: 18px; height: 1.5px; background: var(--ink); transition: .25s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav {
    position: fixed; inset: 76px 0 auto;
    display: flex; flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    background: var(--paper);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: .25s ease;
  }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 18px; }

  .hero { min-height: auto; padding-top: 135px; }
  .hero h1 { font-size: clamp(51px, 15vw, 76px); }
  .hero-description { margin-top: 25px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-art { min-height: 420px; margin-top: 55px; }
  .hero-art::before { width: 340px; height: 340px; right: -70px; }
  .orbit-one { width: 390px; height: 390px; right: -95px; }
  .orbit-two { display: none; }
  .mail-card { width: 86%; top: 20px; right: 0; }
  .journal-card { width: 76%; left: 0; right: auto; bottom: 15px; }
  .hero-stamp { display: none; }
  .hero-meta { grid-template-columns: 1fr; gap: 22px; padding: 25px 0; }

  .work-section { padding: 100px 0 90px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 60px; }
  .section-heading h2, .studio-heading h2, .contact-copy h2 { font-size: clamp(48px, 13vw, 70px); }
  .project { gap: 45px; padding: 45px 0 75px; }
  .project-visual { padding: 18px; border-radius: 22px; }
  .mail-app { min-height: 310px; grid-template-columns: 82px 1fr; }
  .mail-sidebar { padding: 12px 8px; }
  .compose { padding: 7px 4px; }
  .mail-sidebar li { padding: 7px 2px; font-size: 6px; }
  .mail-list { padding: 15px 12px; }
  .assistant-box { padding: 9px; }
  .email-item { padding: 10px 0; gap: 7px; }
  .email-item .avatar { width: 24px; height: 24px; }
  .browser-url { width: 58%; }
  .project-copy h3 { font-size: 46px; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-grid .metric-card:last-child { display: none; }
  .bars { height: 90px; gap: 5px; }

  .studio-section { padding: 100px 0; }
  .studio-grid { grid-template-columns: 1fr; }
  .studio-quote { margin: 50px 0 70px; }
  .principles { grid-column: 1; }

  .contact-section { padding: 80px 0; }
  .contact-card { grid-template-columns: 1fr; gap: 50px; padding: 30px 20px 20px; border-radius: 25px; }
  .contact-copy { padding: 8px 8px 0; }
  .contact-form { border-radius: 19px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .site-footer nav { justify-content: flex-end; }
  .copyright { text-align: left; }
}

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


/* Real VectaMail product imagery */
.vectamail-hero-art::before {
  width: 560px;
  height: 560px;
  top: -5px;
  right: -1%;
  background: linear-gradient(145deg, #d9d2ff, #cbff65);
}

.hero-product-label {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid rgba(21, 23, 19, .08);
  border-radius: 14px;
  background: rgba(248, 247, 242, .9);
  box-shadow: 0 15px 40px rgba(28, 31, 24, .1);
  backdrop-filter: blur(16px);
}
.hero-product-label strong,
.hero-product-label small { display: block; }
.hero-product-label strong {
  margin-bottom: 3px;
  font: 600 12px/1.2 "Manrope", sans-serif;
}
.hero-product-label small {
  color: #767a71;
  font-size: 8px;
}

.device-shot {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  background: #f5f5f8;
  border: 1px solid rgba(0, 0, 0, .09);
  box-shadow: 0 35px 85px rgba(35, 36, 46, .22);
  transition: transform .28s ease;
}
.device-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ipad-shot {
  width: min(660px, 91%);
  top: 70px;
  right: -2%;
  border-radius: 25px;
  transform: rotate(1.5deg);
}
.iphone-shot {
  width: min(218px, 31%);
  height: 470px;
  left: 4%;
  bottom: 0;
  border-radius: 31px;
  transform: rotate(-4deg);
}
.iphone-shot img { object-position: top; }

.vecta-real-visual {
  padding: clamp(24px, 4vw, 55px);
  background: linear-gradient(140deg, #d8d2ff 0%, #e8e5ff 48%, #d9f4aa 100%);
}
.vecta-showcase {
  min-height: 520px;
  position: relative;
}
.vecta-ipad-frame,
.vecta-iphone-frame {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.1);
  background: #f4f4f8;
  box-shadow: 0 30px 65px rgba(44, 39, 82, .2);
  transition: transform .45s ease;
}
.vecta-ipad-frame {
  width: 88%;
  top: 7%;
  right: 0;
  border-radius: 21px;
  transform: rotate(1deg);
}
.vecta-iphone-frame {
  width: 24%;
  height: 72%;
  left: 1%;
  bottom: 2%;
  border-radius: 28px;
  transform: rotate(-4deg);
}
.vecta-ipad-frame img,
.vecta-iphone-frame img {
  display: block;
  width: 100%;
}
.vecta-iphone-frame img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.project:hover .vecta-ipad-frame { transform: rotate(0) scale(1.01); }
.project:hover .vecta-iphone-frame { transform: rotate(-2deg) translateY(-5px); }

.platform-note {
  position: absolute;
  z-index: 4;
  right: 3%;
  bottom: 2%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 13px;
  background: rgba(248,247,242,.93);
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 0 18px 38px rgba(30,33,26,.13);
  backdrop-filter: blur(13px);
}
.platform-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #77ad2b;
  box-shadow: 0 0 0 5px rgba(119,173,43,.12);
}
.platform-note strong,
.platform-note small { display: block; }
.platform-note strong {
  margin-bottom: 3px;
  font-size: 10px;
}
.platform-note small {
  color: #777b72;
  font-size: 8px;
}

@media (max-width: 760px) {
  .vectamail-hero-art::before {
    width: 350px;
    height: 350px;
    right: -75px;
  }
  .hero-product-label {
    top: 0;
    left: 0;
  }
  .ipad-shot {
    width: 95%;
    top: 78px;
    right: -18%;
    border-radius: 18px;
  }
  .iphone-shot {
    width: 31%;
    height: 310px;
    left: 2%;
    bottom: 5px;
    border-radius: 22px;
  }
  .vecta-showcase { min-height: 330px; }
  .vecta-ipad-frame {
    width: 96%;
    top: 8%;
    right: -10%;
    border-radius: 14px;
  }
  .vecta-iphone-frame {
    width: 29%;
    height: 70%;
    left: 0;
    border-radius: 20px;
  }
  .platform-note {
    right: 0;
    bottom: 0;
    padding: 9px 11px;
  }
}


/* Actual Trader Journal live hero */
.journal-live-visual {
  padding: clamp(20px, 3vw, 40px);
  background:
    radial-gradient(circle at 82% 12%, rgba(203,255,101,.72), transparent 28%),
    linear-gradient(145deg, #22261f, #11140f);
}

.journal-site-frame {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 22px;
  background: #f6f4ed;
  box-shadow: 0 34px 75px rgba(10,13,8,.42);
  transform: rotate(1deg);
  transition: transform .45s ease;
}

.project:hover .journal-site-frame {
  transform: rotate(0) scale(1.008);
}

.live-browser-bar {
  position: relative;
  z-index: 5;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: #ecebe6;
}

.live-browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d2d1cb;
}

.live-browser-bar > div {
  min-width: 190px;
  margin-left: auto;
  margin-right: auto;
  padding: 6px 12px;
  border-radius: 7px;
  background: #dfded8;
  color: #797c75;
  text-align: center;
  font-size: 8px;
}

.live-browser-bar > strong {
  color: #52751f;
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journal-live-window {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #f6f4ed;
}

.journal-live-window iframe {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 1440px;
  height: 1100px;
  border: 0;
  pointer-events: none;
  transform: scale(.66);
  transform-origin: top left;
  background: #f6f4ed;
}

.journal-live-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 30px;
  background: #f4f1e9;
  color: #171a16;
}

.fallback-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  font-size: 11px;
}

.fallback-nav span {
  color: #72766d;
  font-size: 8px;
}

.fallback-body {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 35px;
  align-items: center;
  min-height: 400px;
}

.fallback-copy small {
  color: #6b7065;
  font-size: 7px;
  letter-spacing: .13em;
}

.fallback-copy h4 {
  margin: 16px 0;
  font: 500 38px/1.02 "Manrope", sans-serif;
  letter-spacing: -.06em;
}

.fallback-copy h4 em {
  color: #6f992d;
  font-family: "Newsreader", serif;
  font-weight: 400;
}

.fallback-copy p {
  color: #70746b;
  font-size: 10px;
  line-height: 1.6;
}

.fallback-dashboard {
  padding: 24px;
  border-radius: 20px;
  background: #171a16;
  color: white;
  box-shadow: 0 25px 50px rgba(0,0,0,.2);
}

.fallback-dashboard > small {
  color: #979c92;
  font-size: 7px;
  letter-spacing: .11em;
}

.fallback-dashboard > strong {
  display: block;
  margin: 13px 0 5px;
  font-size: 30px;
}

.fallback-dashboard > span {
  color: #bfe96c;
  font-size: 10px;
}

.fallback-dashboard svg {
  width: 100%;
  height: 145px;
  margin: 15px 0;
  color: #cbff65;
}

.fallback-dashboard > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fallback-dashboard > div span {
  padding: 11px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  color: #9fa49a;
  font-size: 8px;
}

.fallback-dashboard > div b {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-size: 15px;
}

.journal-live-caption {
  position: absolute;
  z-index: 6;
  right: 18px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 13px;
  background: rgba(248,247,242,.94);
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
  backdrop-filter: blur(15px);
}

.journal-live-caption strong,
.journal-live-caption small {
  display: block;
}

.journal-live-caption strong {
  margin-bottom: 3px;
  font-size: 10px;
}

.journal-live-caption small {
  color: #777b72;
  font-size: 8px;
}

@media (max-width: 760px) {
  .journal-site-frame {
    min-height: 395px;
    border-radius: 17px;
  }

  .journal-live-window {
    height: 355px;
  }

  .journal-live-window iframe {
    width: 1180px;
    height: 900px;
    transform: scale(.46);
  }

  .live-browser-bar > div {
    min-width: 110px;
  }

  .live-browser-bar > strong {
    display: none;
  }

  .journal-live-fallback {
    padding: 18px;
  }

  .fallback-body {
    grid-template-columns: 1fr;
    min-height: 285px;
  }

  .fallback-copy {
    display: none;
  }

  .journal-live-caption {
    right: 10px;
    bottom: 10px;
    padding: 9px 11px;
  }
}
