:root {
  --blue-600: #2563eb;
  --blue-400: #74a7ff;
  --blue-100: #eaf2ff;
  --ink: #13213a;
  --muted: #64748b;
  --line: #dfe7f2;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --orange: #f77a2a;
  --max: 1240px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(31, 73, 125, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfe;
  font-family: "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-shell { overflow: hidden; }
.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 84px;
  display: flex;
  align-items: center;
  background: rgba(251, 252, 254, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 231, 242, .75);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { width: 54px; height: 42px; display: block; }
.brand-name { font-size: 17px; letter-spacing: .12em; font-weight: 500; color: #17407e; }
.nav { display: flex; align-items: center; gap: 30px; color: #33445d; font-size: 14px; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--blue-600); }
.header-cta { margin-left: 4px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid #c8d4e4;
  background: rgba(255,255,255,.68);
  color: #183154;
  font-size: 14px;
  font-weight: 500;
  transition: transform .22s ease, border-color .22s ease, color .22s ease, background .22s ease, box-shadow .22s ease;
}
.btn:hover {
  border-color: var(--orange);
  color: #b24a08;
  background: #fff8f2;
  transform: translateY(-1px);
  box-shadow: 0 9px 28px rgba(247, 122, 42, .13);
}
.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn.secondary { background: transparent; border-color: transparent; padding-inline: 4px; color: #315276; }
.btn.secondary:hover { box-shadow: none; background: transparent; color: var(--orange); }

.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: var(--ink); margin: 6px 0; }

.hero {
  position: relative;
  padding: 94px 0 112px;
  background:
    radial-gradient(circle at 84% 26%, rgba(116,167,255,.20), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  right: -220px;
  top: 70px;
  background: rgba(37, 99, 235, .035);
  filter: blur(2px);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 70px; align-items: center; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
}
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(58px, 6.1vw, 92px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 400;
}
.hero h1 .accent { color: var(--blue-600); }
.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: #5a6c84;
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; }
.location { display: flex; align-items: center; gap: 9px; margin-top: 28px; color: #6a7990; font-size: 13px; }
.location-dot { width: 8px; height: 8px; border-radius: 50%; border: 2px solid var(--blue-600); }

.hero-visual { position: relative; min-height: 560px; }
.visual-card {
  position: absolute;
  border: 1px solid rgba(200, 216, 235, .9);
  background: rgba(255,255,255,.92);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.browser { width: 84%; height: 390px; right: 0; top: 42px; transform: rotate(1.4deg); }
.browser-top { height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid var(--line); }
.browser-dot { width: 6px; height: 6px; border-radius: 50%; background: #cdd8e6; }
.browser-screen { height: calc(100% - 40px); padding: 34px; background: linear-gradient(135deg, #e6f5e8 0%, #f8fbf4 58%, #e8f3ff 100%); }
.project-label { font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: #48657c; }
.project-title { margin-top: 14px; font-size: 40px; line-height: 1.02; letter-spacing: -.04em; font-weight: 500; color: #1c4b31; }
.project-caption { max-width: 300px; margin-top: 14px; color: #557067; line-height: 1.5; }
.project-chip { display: inline-flex; margin-top: 26px; padding: 10px 14px; border-radius: 999px; background: #fff; border: 1px solid rgba(43,89,58,.15); font-size: 12px; }
.social-card { width: 225px; left: -18px; bottom: 8px; padding: 18px; transform: rotate(-2deg); }
.social-head { display: flex; gap: 10px; align-items: center; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #3f7c42, #8bc38e); }
.social-name { font-size: 12px; font-weight: 600; }
.social-muted { margin-top: 2px; font-size: 10px; color: #8a98aa; }
.social-image { height: 144px; margin-top: 14px; border-radius: 14px; background: linear-gradient(145deg, #83ad7c, #dbe8c8 48%, #b8d19d); }
.social-lines { margin-top: 12px; display: grid; gap: 7px; }
.social-lines span { display: block; height: 6px; border-radius: 99px; background: #edf1f6; }
.social-lines span:nth-child(2) { width: 74%; }
.google-card { width: 270px; right: -16px; bottom: 14px; padding: 20px; transform: rotate(-1deg); }
.google-word { font-weight: 600; letter-spacing: -.03em; font-size: 20px; }
.google-word span:nth-child(1) { color: #4285f4; }
.google-word span:nth-child(2) { color: #ea4335; }
.google-word span:nth-child(3) { color: #fbbc05; }
.google-word span:nth-child(4) { color: #4285f4; }
.google-word span:nth-child(5) { color: #34a853; }
.google-title { margin-top: 22px; font-size: 19px; font-weight: 500; }
.stars { margin-top: 6px; color: #f59e0b; letter-spacing: 2px; font-size: 11px; }
.google-meta { margin-top: 7px; color: #7a899d; font-size: 11px; line-height: 1.55; }
.google-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.google-actions span { padding: 10px 6px; border-radius: 12px; background: #f4f8ff; text-align: center; color: #3264a8; font-size: 9px; }

.problem { padding: 126px 0 134px; background: #fff; border-top: 1px solid rgba(223,231,242,.8); }
.problem-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; }
.problem h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 400;
}
.problem h2 .accent { color: var(--blue-600); }
.problem-copy { max-width: 670px; margin-top: 24px; color: var(--muted); line-height: 1.75; font-size: 16px; }
.channel-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.channel {
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fff, #fbfdff);
  transition: transform .2s ease, border-color .2s ease;
}
.channel:hover { transform: translateY(-3px); border-color: #bdd2ee; }
.channel-number { color: var(--blue-600); font-size: 11px; letter-spacing: .16em; }
.channel-name { margin-top: 32px; font-size: 19px; font-weight: 500; }
.channel-text { margin-top: 7px; color: #8492a6; font-size: 12px; line-height: 1.45; }
.positioning-note {
  margin-top: 62px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .9fr 1.7fr;
  gap: 48px;
  align-items: start;
}
.positioning-note .label { color: var(--blue-600); text-transform: uppercase; letter-spacing: .16em; font-size: 10px; font-weight: 600; }
.positioning-note p { margin: 0; font-size: 24px; line-height: 1.42; letter-spacing: -.02em; color: #273d5a; }

.preview-note { padding: 30px 0 50px; text-align: center; color: #8b98a8; font-size: 12px; }

@media (max-width: 1040px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .hero-grid, .problem-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 72px; }
  .hero-visual { min-height: 520px; margin-top: 10px; }
  .problem-grid { gap: 54px; }
  .channel-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .positioning-note { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .header { height: 72px; }
  .brand-name { font-size: 14px; }
  .header-cta { display: none; }
  .hero { padding: 62px 0 80px; }
  .hero h1 { font-size: clamp(48px, 14vw, 66px); }
  .hero-copy { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-visual { min-height: 500px; }
  .browser { width: 92%; right: 0; top: 34px; height: 330px; }
  .browser-screen { padding: 24px; }
  .project-title { font-size: 31px; }
  .social-card { width: 180px; left: 0; }
  .google-card { width: 220px; right: 0; }
  .problem { padding: 88px 0 94px; }
  .problem h2 { font-size: 43px; }
  .channel-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .positioning-note p { font-size: 20px; }
}

@media (max-width: 500px) {
  .hero-visual { min-height: 470px; }
  .browser { width: 100%; height: 300px; }
  .browser-screen { padding: 20px; }
  .project-title { font-size: 27px; }
  .project-caption { font-size: 12px; }
  .social-card { width: 152px; bottom: 14px; }
  .social-image { height: 105px; }
  .google-card { width: 188px; right: -6px; bottom: 22px; padding: 15px; }
  .google-actions { display: none; }
}

/* v0.2 · Services */
.services {
  padding: 130px 0 142px;
  background: #f8faff;
  border-top: 1px solid rgba(223,231,242,.82);
  border-bottom: 1px solid rgba(223,231,242,.82);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  align-items: end;
}
.section-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 400;
}
.section-heading h2 .accent { color: var(--blue-600); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding-bottom: 7px;
  border-bottom: 1px solid #cbd8e9;
  color: #526a89;
  font-size: 13px;
  transition: color .2s ease, border-color .2s ease;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover { color: var(--orange); border-color: var(--orange); }
.text-link:hover span { transform: translateX(4px); }
.service-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.service-card {
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #b8ccea;
  background: #fff;
  box-shadow: 0 22px 55px rgba(38, 76, 126, .08);
}
.service-top { display: flex; align-items: center; justify-content: space-between; }
.service-number {
  color: var(--blue-600);
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 600;
}
.service-mark { color: #a4b5ca; font-size: 16px; }
.service-icon {
  width: 50px;
  height: 50px;
  margin-top: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #cddcf0;
  border-radius: 50%;
  color: var(--blue-600);
  font-size: 22px;
  font-weight: 300;
}
.service-card h3 {
  margin: 24px 0 0;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.025em;
  font-weight: 500;
}
.service-card p {
  margin: 14px 0 0;
  color: #718096;
  font-size: 14px;
  line-height: 1.65;
}
.service-card > a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
  padding-top: 26px;
  color: #315b94;
  font-size: 12px;
  font-weight: 500;
}
.service-card > a span { transition: transform .2s ease; }
.service-card:hover > a { color: var(--orange); }
.service-card:hover > a span { transform: translateX(4px); }

/* v0.2 · Personal USP */
.personal-usp {
  position: relative;
  padding: 142px 0 150px;
  background: #fff;
}
.usp-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 92px;
  align-items: center;
}
.usp-visual {
  min-height: 610px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #dbe5f1;
  background:
    radial-gradient(circle at 28% 26%, rgba(116,167,255,.34), transparent 30%),
    radial-gradient(circle at 78% 78%, rgba(37,99,235,.12), transparent 32%),
    linear-gradient(145deg, #f7faff 0%, #edf4ff 48%, #fafcff 100%);
  box-shadow: 0 26px 70px rgba(33, 77, 133, .09);
  position: relative;
}
.usp-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 20px;
  pointer-events: none;
}
.usp-visual-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 610px;
  padding: 54px;
  display: flex;
  flex-direction: column;
}
.usp-symbol-wrap {
  width: 138px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(196,214,238,.9);
  box-shadow: 0 18px 40px rgba(52,88,142,.08);
}
.usp-symbol-wrap img { width: 98px; height: auto; }
.usp-kicker {
  max-width: 390px;
  margin-top: auto;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 400;
  color: #17396e;
}
.usp-visual-line { width: 74px; height: 1px; background: var(--blue-600); margin-top: 24px; }
.usp-visual-inner > p {
  max-width: 390px;
  margin: 20px 0 0;
  color: #667a97;
  line-height: 1.65;
  font-size: 14px;
}
.usp-signoff {
  margin-top: 32px;
  color: #8aa0bc;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 9px;
}
.usp-copy h2 {
  margin: 0;
  font-size: clamp(46px, 4.8vw, 72px);
  line-height: .99;
  letter-spacing: -.05em;
  font-weight: 400;
}
.usp-copy h2 .accent { color: var(--blue-600); }
.usp-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #62738b;
  font-size: 16px;
  line-height: 1.75;
}
.usp-points {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.usp-point {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.usp-point-index {
  color: var(--blue-600);
  font-size: 10px;
  letter-spacing: .15em;
  padding-top: 3px;
}
.usp-point strong { font-size: 15px; font-weight: 500; color: #253c5c; }
.usp-point p { margin: 5px 0 0; color: #8796a9; font-size: 12px; line-height: 1.45; }
.usp-copy blockquote {
  margin: 36px 0 0;
  padding: 0 0 0 22px;
  border-left: 1px solid #a9c1e3;
  color: #29415f;
  font-size: 23px;
  line-height: 1.42;
  letter-spacing: -.015em;
  font-style: normal;
}
.usp-copy blockquote span { color: var(--blue-600); }

@media (max-width: 1040px) {
  .section-heading { align-items: start; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .service-card { min-height: 330px; }
  .usp-grid { grid-template-columns: 1fr; gap: 58px; }
  .usp-visual, .usp-visual-inner { min-height: 500px; }
}

@media (max-width: 760px) {
  .services { padding: 92px 0 98px; }
  .section-heading { display: block; }
  .section-heading h2 { font-size: 43px; }
  .text-link { margin-top: 24px; }
  .service-grid { margin-top: 42px; grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-icon { margin-top: 38px; }
  .personal-usp { padding: 96px 0 102px; }
  .usp-visual, .usp-visual-inner { min-height: 430px; }
  .usp-visual-inner { padding: 34px; }
  .usp-symbol-wrap { width: 112px; height: 86px; }
  .usp-symbol-wrap img { width: 78px; }
  .usp-kicker { font-size: 37px; }
  .usp-copy h2 { font-size: 46px; }
  .usp-copy blockquote { font-size: 20px; }
}

/* v0.3 · Projects */
.projects {
  position: relative;
  padding: 142px 0 150px;
  background: #f7f9fc;
  border-top: 1px solid rgba(223,231,242,.85);
}
.projects-heading { align-items: end; }
.projects-grid {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project-case {
  overflow: hidden;
  border: 1px solid #dce5f0;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.project-case:hover {
  transform: translateY(-4px);
  border-color: #bfd1e9;
  box-shadow: 0 24px 65px rgba(35,74,122,.09);
}
.project-art {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid #e3eaf3;
}
.project-art--garden {
  background:
    radial-gradient(circle at 10% 12%, rgba(62,126,74,.18), transparent 24%),
    radial-gradient(circle at 88% 76%, rgba(116,167,255,.24), transparent 28%),
    linear-gradient(145deg, #eaf4e8 0%, #f8fbf6 52%, #eaf2ff 100%);
}
.garden-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.garden-orb--one { width: 270px; height: 270px; left: -70px; bottom: -90px; background: rgba(75,130,75,.17); }
.garden-orb--two { width: 180px; height: 180px; right: -40px; top: -36px; background: rgba(85,140,96,.12); }
.case-browser {
  position: absolute;
  width: 78%;
  height: 315px;
  left: 7%;
  top: 54px;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(180,201,180,.65);
  box-shadow: 0 25px 60px rgba(55,91,64,.13);
  transform: rotate(-1.2deg);
}
.case-browser-bar { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid #e7ece7; }
.case-browser-bar span { width: 6px; height: 6px; border-radius: 50%; background: #cad5ca; }
.case-browser-screen { height: calc(100% - 38px); padding: 34px; background: linear-gradient(135deg,#dbead8 0%,#f4f8ef 52%,#e2edda 100%); }
.case-overline { color: #477051; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; }
.case-display { margin-top: 18px; color: #244c31; font-size: 45px; line-height: .93; letter-spacing: -.045em; font-weight: 500; }
.case-rule { width: 54px; height: 1px; margin-top: 22px; background: #587c5c; }
.case-mini-copy { margin-top: 16px; color: #687e6c; font-size: 11px; }
.case-floating-card {
  position: absolute;
  right: 5%;
  bottom: 22px;
  width: 210px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid #d5e2ee;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 40px rgba(42,83,131,.11);
}
.case-floating-card span { display: block; color: var(--blue-600); text-transform: uppercase; letter-spacing: .12em; font-size: 8px; }
.case-floating-card strong { display: block; margin-top: 8px; color: #29435d; font-size: 15px; font-weight: 500; }
.case-floating-card small { display: block; margin-top: 7px; color: #8494a7; font-size: 9px; line-height: 1.45; }

.project-art--ep {
  background:
    radial-gradient(circle at 84% 16%, rgba(116,167,255,.22), transparent 24%),
    linear-gradient(135deg, #172334 0%, #23344b 45%, #415166 100%);
}
.ep-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 52px 52px;
}
.ep-sign {
  position: absolute;
  left: 8%;
  top: 68px;
  color: #fff;
  font-size: 54px;
  line-height: .86;
  letter-spacing: -.05em;
  font-weight: 500;
}
.ep-sign span { font-size: 21px; letter-spacing: -.02em; font-weight: 400; color: #d7e5f7; }
.ep-phone {
  position: absolute;
  width: 185px;
  height: 320px;
  right: 9%;
  bottom: -34px;
  padding: 14px;
  border: 6px solid #0f1825;
  border-radius: 31px;
  background: #f6f8fb;
  box-shadow: 0 30px 68px rgba(0,0,0,.28);
  transform: rotate(2.5deg);
}
.ep-phone-top { width: 48px; height: 6px; margin: 0 auto 14px; border-radius: 99px; background: #d7dee8; }
.ep-post { border-radius: 12px; margin-top: 10px; background: linear-gradient(145deg,#dbe6f6,#8798ae); }
.ep-post--one { height: 116px; }
.ep-post--two { width: 76%; height: 44px; }
.ep-post--three { width: 90%; height: 44px; }
.ep-content-label {
  position: absolute;
  left: 8%;
  bottom: 52px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: #dce8f7;
  font-size: 10px;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.06);
}
.project-case-copy { padding: 34px 34px 36px; }
.project-case-index { color: var(--blue-600); text-transform: uppercase; letter-spacing: .15em; font-size: 9px; font-weight: 600; }
.project-case h3 { margin: 16px 0 0; font-size: 31px; line-height: 1.06; letter-spacing: -.035em; font-weight: 400; }
.project-case-copy > p { margin: 16px 0 0; max-width: 570px; color: #6f7e92; line-height: 1.68; font-size: 14px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.project-tags span { padding: 8px 10px; border: 1px solid #dbe5f1; border-radius: 999px; color: #60748e; background: #fbfcfe; font-size: 9px; }
.project-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 30px; color: #315b94; font-size: 12px; font-weight: 500; }
.project-link span { transition: transform .2s ease; }
.project-case:hover .project-link { color: var(--orange); }
.project-case:hover .project-link span { transform: translateX(4px); }
.projects-footnote {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #dfe7f1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #8796a9;
  font-size: 11px;
}
.projects-footnote span { color: #315276; }
.projects-footnote p { margin: 0; }

/* v0.3 · Process */
.process {
  padding: 142px 0 154px;
  background: #fff;
}
.process-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: end;
}
.process-intro h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 4.5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 400;
}
.process-intro h2 .accent { color: var(--blue-600); }
.process-intro > p {
  max-width: 480px;
  margin: 0 0 4px;
  color: #758499;
  font-size: 14px;
  line-height: 1.7;
}
.process-steps {
  position: relative;
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #dce5f0;
}
.process-step { position: relative; min-height: 255px; padding: 28px 34px 10px 0; }
.process-step:not(:last-child) { border-right: 1px solid #e5ebf3; margin-right: 30px; }
.process-step-top { display: flex; align-items: center; justify-content: space-between; color: var(--blue-600); font-size: 10px; letter-spacing: .15em; }
.process-dot { width: 9px; height: 9px; margin-right: -5px; border-radius: 50%; background: #fff; border: 2px solid var(--blue-600); box-shadow: 0 0 0 7px #f4f8ff; }
.process-step h3 { margin: 54px 0 0; font-size: 24px; font-weight: 400; letter-spacing: -.025em; }
.process-step p { max-width: 240px; margin: 14px 0 0; color: #7b899c; font-size: 12px; line-height: 1.65; }
.process-principle {
  margin-top: 44px;
  padding: 30px 0 0;
  border-top: 1px solid #dce5f0;
  display: grid;
  grid-template-columns: .7fr 2fr;
  gap: 54px;
}
.process-principle-label { color: var(--blue-600); text-transform: uppercase; letter-spacing: .16em; font-size: 9px; font-weight: 600; }
.process-principle p { margin: 0; color: #425773; font-size: 22px; line-height: 1.45; letter-spacing: -.015em; }
.process-principle strong { font-weight: 500; color: #17396e; }

@media (max-width: 1040px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-art { min-height: 410px; }
  .process-intro { grid-template-columns: 1fr; gap: 28px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step { border-bottom: 1px solid #e5ebf3; }
  .process-step:not(:last-child) { margin-right: 0; padding-right: 28px; }
  .process-step:nth-child(2) { border-right: 0; padding-left: 28px; }
  .process-step:nth-child(3) { padding-top: 36px; }
  .process-step:nth-child(4) { border-right: 0; padding: 36px 0 10px 28px; }
}

@media (max-width: 760px) {
  .projects { padding: 96px 0 104px; }
  .projects-grid { margin-top: 42px; }
  .project-art { min-height: 340px; }
  .case-browser { width: 88%; left: 4%; top: 38px; height: 260px; }
  .case-browser-screen { padding: 26px; }
  .case-display { font-size: 36px; }
  .case-floating-card { width: 180px; right: 3%; bottom: 14px; }
  .ep-sign { font-size: 42px; left: 7%; top: 52px; }
  .ep-sign span { font-size: 17px; }
  .ep-phone { width: 150px; height: 260px; right: 6%; }
  .ep-post--one { height: 88px; }
  .project-case-copy { padding: 28px; }
  .project-case h3 { font-size: 28px; }
  .projects-footnote { display: block; }
  .projects-footnote p { margin-top: 8px; }
  .process { padding: 96px 0 104px; }
  .process-intro h2 { font-size: 43px; }
  .process-steps { margin-top: 48px; grid-template-columns: 1fr; border-top: 1px solid #dce5f0; }
  .process-step,
  .process-step:nth-child(2),
  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    min-height: 0;
    margin: 0;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid #e5ebf3;
  }
  .process-dot { margin-right: 5px; }
  .process-step h3 { margin-top: 28px; }
  .process-step p { max-width: 420px; }
  .process-principle { grid-template-columns: 1fr; gap: 16px; }
  .process-principle p { font-size: 19px; }
}

/* v0.4 · About / Founder */
.about {
  padding: 132px 0 140px;
  background: linear-gradient(180deg, #fbfcfe 0%, #ffffff 100%);
  border-top: 1px solid rgba(223,231,242,.82);
}
.about-hero {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(64px, 7vw, 110px);
  align-items: center;
}
.about-person { min-width: 0; }
.about-photo-placeholder {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid #dbe6f3;
  border-radius: 30px;
  background:
    radial-gradient(circle at 72% 18%, rgba(116,167,255,.27), transparent 28%),
    linear-gradient(145deg, #f8fbff 0%, #eef4fd 48%, #fdfefe 100%);
  box-shadow: 0 30px 80px rgba(30,74,128,.08);
}
.about-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(37,99,235,.09);
  border-radius: 22px;
}
.about-photo-orbit {
  position: absolute;
  border: 1px solid rgba(37,99,235,.11);
  border-radius: 50%;
}
.about-photo-orbit--one { width: 340px; height: 340px; right: -118px; top: 26px; }
.about-photo-orbit--two { width: 220px; height: 220px; left: -86px; bottom: 34px; }
.about-photo-silhouette {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 210px;
  height: 270px;
  transform: translate(-50%,-50%);
}
.about-photo-head {
  position: absolute;
  left: 50%;
  top: 0;
  width: 94px;
  height: 94px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(145deg, #c9daf1, #e8f0fa);
  border: 1px solid #bed0e8;
}
.about-photo-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 200px;
  height: 160px;
  transform: translateX(-50%);
  border-radius: 96px 96px 28px 28px;
  background: linear-gradient(145deg, #c2d5ef, #e5eef9);
  border: 1px solid #b9cce5;
}
.about-photo-label {
  position: absolute;
  left: 34px;
  bottom: 30px;
  display: grid;
  gap: 4px;
}
.about-photo-label span {
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 9px;
  font-weight: 600;
}
.about-photo-label strong { color: #48617f; font-size: 13px; font-weight: 500; }
.about-identity {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px 24px;
  align-items: end;
  padding: 22px 4px 0;
}
.about-identity span { grid-column: 1 / -1; color: #7c8da3; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.about-identity strong { color: #173b72; font-size: 26px; line-height: 1; font-weight: 500; letter-spacing: -.025em; }
.about-identity small { color: var(--blue-600); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.about-story h2 {
  max-width: 720px;
  margin: 0;
  color: #1f3858;
  font-size: clamp(48px, 4.8vw, 72px);
  line-height: .99;
  letter-spacing: -.05em;
  font-weight: 400;
}
.about-story h2 .accent { color: var(--blue-600); }
.about-copy { max-width: 700px; margin-top: 34px; }
.about-copy p { margin: 0 0 16px; color: #687b94; font-size: 15px; line-height: 1.78; }
.about-copy strong { color: #2e496d; font-weight: 500; }
.about-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid #dfe7f2;
}
.about-note span { color: var(--blue-600); text-transform: uppercase; letter-spacing: .15em; font-size: 9px; font-weight: 600; }
.about-note p { margin: 0; color: #425a79; font-size: 20px; line-height: 1.5; letter-spacing: -.015em; }
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 78px;
}
.about-fact {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 30px 26px;
  border: 1px solid #dfe7f2;
  border-radius: 22px;
  background: #fff;
}
.about-fact--lead { background: linear-gradient(135deg,#fff 0%,#f6f9ff 100%); }
.about-fact-number { color: var(--blue-600); font-size: 10px; letter-spacing: .16em; padding-top: 3px; }
.about-fact-kicker { display: block; color: #8a9aaf; text-transform: uppercase; letter-spacing: .14em; font-size: 8px; }
.about-fact h3 { margin: 10px 0 0; color: #243d5c; font-size: 22px; line-height: 1.15; letter-spacing: -.025em; font-weight: 400; }
.about-fact p { margin: 10px 0 0; color: #7c8ca0; font-size: 12px; line-height: 1.6; }

.manifest {
  position: relative;
  padding: 150px 0 158px;
  background: #fff;
  overflow: hidden;
}
.manifest::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116,167,255,.13), rgba(116,167,255,0) 70%);
}
.manifest-top { position: relative; display: flex; align-items: start; justify-content: space-between; gap: 30px; }
.manifest-index { color: #9aa8ba; text-transform: uppercase; letter-spacing: .16em; font-size: 9px; }
.manifest h2 {
  position: relative;
  max-width: 920px;
  margin: 0;
  font-size: clamp(64px, 7vw, 108px);
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 400;
}
.manifest h2 .accent { color: var(--blue-600); }
.manifest-grid {
  position: relative;
  margin-top: 74px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 100px;
}
.manifest-copy { max-width: 520px; }
.manifest-copy p { margin: 0 0 18px; color: #657991; font-size: 16px; line-height: 1.78; }
.manifest-principles { border-top: 1px solid #dce5f0; }
.manifest-principle {
  display: grid;
  grid-template-columns: 46px 1.1fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 23px 0;
  border-bottom: 1px solid #e2e9f2;
}
.manifest-principle > span { color: var(--blue-600); font-size: 9px; letter-spacing: .15em; padding-top: 3px; }
.manifest-principle strong { color: #263f5f; font-size: 14px; font-weight: 500; }
.manifest-principle p { margin: 0; color: #8391a4; font-size: 11px; line-height: 1.55; }
.manifest-statement {
  position: relative;
  margin-top: 76px;
  padding: 36px 0 0;
  border-top: 1px solid #dbe5f0;
  display: grid;
  grid-template-columns: .55fr 2fr;
  gap: 54px;
}
.manifest-statement-label { color: var(--blue-600); text-transform: uppercase; letter-spacing: .16em; font-size: 9px; font-weight: 600; }
.manifest-statement p { max-width: 880px; margin: 0; color: #38506f; font-size: clamp(25px, 2.5vw, 38px); line-height: 1.38; letter-spacing: -.025em; }
.manifest-statement strong { color: #17396e; font-weight: 500; }

@media (max-width: 1040px) {
  .about-hero { grid-template-columns: 1fr; gap: 58px; }
  .about-person { max-width: 620px; }
  .about-facts { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .manifest-grid { grid-template-columns: 1fr; gap: 44px; }
  .manifest-copy { max-width: 720px; }
}

@media (max-width: 760px) {
  .about { padding: 98px 0 106px; }
  .about-photo-placeholder { min-height: 460px; }
  .about-story h2 { font-size: 46px; }
  .about-note { grid-template-columns: 1fr; gap: 14px; }
  .about-note p { font-size: 18px; }
  .about-facts { grid-template-columns: 1fr; margin-top: 54px; }
  .about-fact { grid-template-columns: 42px 1fr; min-height: 0; padding: 26px 24px; }
  .about-fact h3 { font-size: 20px; }
  .manifest { padding: 100px 0 108px; }
  .manifest h2 { font-size: clamp(58px, 16vw, 78px); }
  .manifest-grid { margin-top: 50px; }
  .manifest-principle { grid-template-columns: 38px 1fr; gap: 18px; }
  .manifest-principle p { grid-column: 2; margin-top: -6px; }
  .manifest-statement { margin-top: 54px; grid-template-columns: 1fr; gap: 16px; }
  .manifest-statement p { font-size: 25px; }
}

/* v0.6 · Pricing teaser */
.pricing-teaser {
  padding: 132px 0 138px;
  background: #f7f9fc;
  border-top: 1px solid rgba(223,231,242,.86);
  border-bottom: 1px solid rgba(223,231,242,.86);
}
.pricing-shell {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(70px, 8vw, 124px);
  align-items: end;
}
.pricing-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #203957;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 400;
}
.pricing-copy h2 .accent { color: var(--blue-600); }
.pricing-copy > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: #6d7f96;
  font-size: 15px;
  line-height: 1.78;
}
.pricing-side {
  padding: 34px 0 4px;
  border-top: 1px solid #d9e3ef;
}
.pricing-note-index {
  display: block;
  color: var(--blue-600);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 9px;
  font-weight: 600;
}
.pricing-note p {
  margin: 18px 0 0;
  color: #425a78;
  font-size: 20px;
  line-height: 1.52;
  letter-spacing: -.014em;
}
.pricing-button { margin-top: 34px; }
.pricing-micro {
  margin-top: 17px;
  color: #929fb0;
  font-size: 10px;
  line-height: 1.5;
}

/* v0.6 · Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 154px 0 162px;
  background:
    radial-gradient(circle at 82% 24%, rgba(116,167,255,.18), transparent 27%),
    radial-gradient(circle at 16% 82%, rgba(37,99,235,.08), transparent 31%),
    linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(172,198,232,.42);
  border-radius: 34px;
  pointer-events: none;
}
.final-cta-watermark {
  position: absolute;
  right: -34px;
  top: 42px;
  width: min(38vw, 510px);
  opacity: .045;
  transform: rotate(-8deg);
}
.final-cta-watermark img { width: 100%; height: auto; display: block; }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta h2 {
  max-width: 1000px;
  margin: 0;
  color: #203958;
  font-size: clamp(58px, 6.2vw, 94px);
  line-height: .94;
  letter-spacing: -.06em;
  font-weight: 400;
}
.final-cta h2 .accent { color: var(--blue-600); }
.final-cta-copy {
  max-width: 680px;
  margin: 32px 0 0;
  color: #687c95;
  font-size: 16px;
  line-height: 1.75;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}
.final-cta-trust {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 32px;
  color: #778ba4;
  font-size: 11px;
}
.final-cta-trust span {
  width: 24px;
  height: 1px;
  background: var(--blue-600);
}

/* v0.6 · Footer */
.footer {
  padding: 72px 0 26px;
  background: #fff;
  border-top: 1px solid #dfe7f2;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.65fr .7fr 1fr;
  gap: 72px;
  padding-bottom: 64px;
}
.footer-brand { width: fit-content; }
.footer-brand-block > p {
  max-width: 390px;
  margin: 22px 0 0;
  color: #75869a;
  font-size: 13px;
  line-height: 1.7;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #536a86;
  font-size: 12px;
}
.footer-column a { transition: color .2s ease; }
.footer-column a:hover { color: var(--orange); }
.footer-label {
  margin-bottom: 9px;
  color: #9ba8b9;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 8px;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid #e3eaf3;
  color: #9aa7b7;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.footer-bottom > div { display: flex; gap: 24px; }
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: var(--orange); }

@media (max-width: 1040px) {
  .pricing-shell { grid-template-columns: 1fr; gap: 54px; }
  .pricing-side { max-width: 760px; }
  .footer-main { grid-template-columns: 1.3fr .7fr 1fr; gap: 44px; }
}

@media (max-width: 760px) {
  .pricing-teaser { padding: 98px 0 104px; }
  .pricing-copy h2 { font-size: 47px; }
  .pricing-note p { font-size: 18px; }
  .final-cta { padding: 104px 0 112px; }
  .final-cta::before { inset: 10px; border-radius: 25px; }
  .final-cta h2 { font-size: clamp(52px, 15vw, 72px); }
  .final-cta-actions { flex-direction: column; align-items: flex-start; gap: 8px; }
  .final-cta-watermark { width: 78vw; right: -42vw; top: 66px; }
  .footer { padding-top: 58px; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; padding-bottom: 44px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 14px; }
}

/* v0.7 · Real assets and founder identity */
.hero-visual--real { min-height: 570px; }
.browser--image { width: 86%; height: 398px; right: 0; top: 32px; transform: rotate(1deg); background: #fff; }
.browser--image .browser-top { position: relative; }
.browser-url { margin-left: 8px; color: #8a98aa; font-size: 9px; letter-spacing: .02em; }
.browser--image > img { width: 100%; height: calc(100% - 40px); display: block; object-fit: cover; object-position: top center; }
.social-card--image { width: 205px; left: -18px; bottom: 0; padding: 10px; transform: rotate(-2.4deg); }
.google-card--image { width: 224px; right: -18px; bottom: 2px; padding: 10px; transform: rotate(1.6deg); }
.social-card--image img,
.google-card--image img { width: 100%; display: block; border-radius: 16px; }
.social-card--image img { height: 265px; object-fit: cover; object-position: top center; }
.google-card--image img { height: 300px; object-fit: cover; object-position: top center; }
.real-card-label { padding: 4px 4px 10px; color: #57708f; text-transform: uppercase; letter-spacing: .12em; font-size: 7px; font-weight: 600; }
.hero-proof-note { position: absolute; right: 17%; top: 458px; max-width: 190px; color: #77889e; font-size: 10px; line-height: 1.45; }
.hero-proof-note span { color: var(--blue-600); font-weight: 600; }

.projects-grid--real .project-case { display: flex; flex-direction: column; }
.project-gallery { position: relative; min-height: 445px; overflow: hidden; border-bottom: 1px solid #e3eaf3; }
.project-gallery--garden { background: linear-gradient(145deg,#eaf4e8 0%,#f8fbf6 48%,#eaf2ff 100%); }
.project-gallery--ep { background: linear-gradient(145deg,#eef5ff 0%,#f8fbff 54%,#eef2f7 100%); }
.project-gallery-main { position: absolute; left: 5.5%; top: 40px; width: 78%; height: 322px; margin: 0; overflow: hidden; border-radius: 22px; border: 1px solid rgba(197,213,229,.9); background: #fff; box-shadow: 0 24px 58px rgba(40,75,116,.13); transform: rotate(-1deg); }
.project-gallery-main img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; }
.project-gallery-float { position: absolute; margin: 0; overflow: hidden; border: 7px solid #fff; background: #fff; box-shadow: 0 18px 42px rgba(40,75,116,.14); }
.project-gallery-float img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; }
.project-gallery-float--phone { width: 138px; height: 262px; left: 5%; bottom: -35px; border-radius: 24px; transform: rotate(-2.4deg); }
.project-gallery-float--print { width: 155px; height: 220px; right: 4%; bottom: -24px; border-radius: 18px; transform: rotate(2deg); }
.project-gallery-badge { position: absolute; right: 5%; top: 24px; display: flex; align-items: center; gap: 9px; padding: 8px 10px 8px 8px; border: 1px solid #dbe6ef; border-radius: 999px; background: rgba(255,255,255,.92); box-shadow: 0 10px 26px rgba(40,75,116,.08); color: #5d7189; font-size: 8px; }
.project-gallery-badge img { width: 25px; height: 25px; border-radius: 50%; object-fit: cover; }
.project-gallery-main--ep { left: 9%; top: 33px; width: 58%; height: 365px; transform: rotate(-1.2deg); }
.project-gallery-main--ep img { object-fit: cover; object-position: top center; }
.ep-logo-card { position: absolute; right: 6%; top: 52px; width: 180px; padding: 14px; border: 1px solid #dce6f1; border-radius: 20px; background: rgba(255,255,255,.95); box-shadow: 0 18px 44px rgba(40,75,116,.1); transform: rotate(1.6deg); }
.ep-logo-card img { width: 100%; display: block; border-radius: 12px; }
.ep-proof-copy { position: absolute; right: 6%; bottom: 54px; width: 215px; padding: 22px; border-radius: 20px; border: 1px solid #dce6f1; background: rgba(255,255,255,.9); }
.ep-proof-copy span { display: block; color: var(--blue-600); text-transform: uppercase; letter-spacing: .13em; font-size: 8px; }
.ep-proof-copy strong { display: block; margin-top: 10px; color: #314b6d; font-size: 17px; line-height: 1.28; font-weight: 400; letter-spacing: -.02em; }
.reference-strip { position: relative; margin-top: 24px; min-height: 300px; display: grid; grid-template-columns: .48fr 1fr auto; gap: 46px; align-items: center; overflow: hidden; padding: 30px; border: 1px solid #dce5f0; border-radius: 28px; background: #fff; }
.reference-strip-media { height: 235px; overflow: hidden; border-radius: 20px; background: #111827; }
.reference-strip-media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; }
.reference-strip-copy h3 { margin: 15px 0 0; color: #263f5f; font-size: 30px; line-height: 1.1; font-weight: 400; letter-spacing: -.035em; }
.reference-strip-copy > p { max-width: 620px; margin: 15px 0 0; color: #718197; font-size: 14px; line-height: 1.7; }
.reference-strip-mark { align-self: start; color: #9aa8b9; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; writing-mode: vertical-rl; transform: rotate(180deg); }

.about-photo-real { position: relative; margin: 0; overflow: hidden; border: 1px solid #dbe6f3; border-radius: 30px; background: #f4f7fb; box-shadow: 0 30px 80px rgba(30,74,128,.09); }
.about-photo-real::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 58%, rgba(14,35,67,.58) 100%); }
.about-photo-real > img { width: 100%; height: 575px; display: block; object-fit: cover; object-position: 50% 26%; }
.about-photo-real figcaption { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 28px; display: grid; grid-template-columns: 1fr auto; gap: 7px 20px; align-items: end; color: #fff; }
.about-photo-real figcaption span { grid-column: 1 / -1; color: rgba(255,255,255,.74); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.about-photo-real figcaption strong { font-size: 27px; line-height: 1; font-weight: 500; letter-spacing: -.025em; }
.about-photo-real figcaption small { color: #cfe0ff; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; }

@media (max-width: 1040px) {
  .hero-visual--real { min-height: 610px; }
  .browser--image { width: 82%; right: 3%; }
  .social-card--image { left: 3%; }
  .google-card--image { right: 3%; }
  .project-gallery-main--ep { width: 62%; }
  .reference-strip { grid-template-columns: 280px 1fr; }
  .reference-strip-mark { display: none; }
}

@media (max-width: 760px) {
  .hero-visual--real { min-height: 510px; }
  .browser--image { width: 92%; height: 300px; right: 2%; top: 25px; }
  .social-card--image { width: 150px; left: 1%; bottom: 8px; }
  .social-card--image img { height: 210px; }
  .google-card--image { width: 160px; right: 1%; bottom: 12px; }
  .google-card--image img { height: 220px; }
  .hero-proof-note { display: none; }
  .project-gallery { min-height: 360px; }
  .project-gallery-main { width: 88%; height: 250px; left: 6%; top: 34px; }
  .project-gallery-float--phone { width: 105px; height: 205px; left: 4%; }
  .project-gallery-float--print { width: 118px; height: 170px; right: 3%; }
  .project-gallery-badge { display: none; }
  .project-gallery-main--ep { width: 58%; height: 300px; left: 6%; top: 28px; }
  .ep-logo-card { width: 132px; right: 4%; top: 38px; }
  .ep-proof-copy { width: 155px; right: 4%; bottom: 34px; padding: 15px; }
  .ep-proof-copy strong { font-size: 13px; }
  .reference-strip { grid-template-columns: 1fr; gap: 24px; padding: 22px; }
  .reference-strip-media { height: 330px; }
  .reference-strip-copy h3 { font-size: 26px; }
  .about-photo-real > img { height: 500px; object-position: 50% 22%; }
  .about-photo-real figcaption { left: 22px; right: 22px; bottom: 22px; }
  .about-photo-real figcaption strong { font-size: 24px; }
}

/* v1.0 · deployment polish */
.skip-link {
  position: fixed;
  z-index: 100;
  left: 14px;
  top: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

:focus-visible { outline: 2px solid var(--blue-600); outline-offset: 4px; }
section[id] { scroll-margin-top: 104px; }

.mobile-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(251,252,254,.98);
  box-shadow: 0 26px 60px rgba(31,73,125,.10);
}
.mobile-nav-inner {
  display: grid;
  gap: 0;
  padding-top: 12px;
  padding-bottom: 24px;
}
.mobile-nav-inner > a:not(.btn) {
  padding: 16px 2px;
  border-bottom: 1px solid rgba(223,231,242,.82);
  color: #314a68;
  font-size: 16px;
}
.mobile-nav .btn { margin-top: 18px; justify-self: start; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.menu-toggle span { transition: transform .22s ease; }

.reference-strip--results { grid-template-columns: .42fr 1.18fr auto; }
.result-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  margin-top: 24px;
}
.result-metric {
  min-height: 112px;
  padding: 18px 16px;
  border: 1px solid #dfe7f2;
  border-radius: 16px;
  background: #f9fbfe;
}
.result-metric strong {
  display: block;
  color: #294769;
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -.04em;
}
.result-metric span {
  display: block;
  margin-top: 12px;
  color: #718197;
  font-size: 10px;
  line-height: 1.35;
}
.result-metric--accent { border-color: #bcd0ee; background: #f2f7ff; }
.result-metric--accent strong { color: var(--blue-600); }
.result-note {
  margin-top: 13px !important;
  color: #8b98aa !important;
  font-size: 10px !important;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal-ready.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .header { position: sticky; }
  .mobile-nav.is-open { display: block; }
  body.menu-open { overflow: hidden; }
  .reference-strip--results { grid-template-columns: 280px 1fr; }
  .result-metrics { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 760px) {
  .result-metrics { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .result-metric { min-height: 100px; }
  .result-metric strong { font-size: 27px; }
  .reference-strip--results { grid-template-columns: 1fr; }
}

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