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

  :root {
    --ink: #0a0f1e;
    --ink-soft: #3a4060;
    --ink-muted: #7a829a;
    --paper: #f5f4f0;
    --surface: #ffffff;
    --accent: #0057ff;
    --accent-glow: #3b7bff;
    --accent-dark: #003ec2;
    --electric: #00e5ff;
    --warm: #ff5c35;
    --border: rgba(10,15,30,0.10);
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; color-scheme: light; }

  body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ─── SKIP LINK (accessibility + SEO) ─── */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 9999;
    text-decoration: none;
  }
  .skip-link:focus { top: 0.5rem; }

  /* ─── NAV ─── */
  body > nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 4rem;
    background: rgba(245,244,240,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.03em;
    color: var(--ink);
    text-decoration: none;
  }

  .logo span { color: var(--accent); }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }

  .nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--accent); }
  .nav-links a[aria-current="page"],
  .mobile-nav a[aria-current="page"] { color: var(--accent); }

  .nav-cta {
    background: var(--ink);
    color: #fff !important;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

  /* ─── HAMBURGER ─── */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
  }

  .nav-toggle:hover { background: rgba(0,87,255,0.06); }

  .nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── MOBILE NAV DRAWER ─── */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: rgba(245,244,240,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }

  .mobile-nav.open { display: flex; }

  .mobile-nav a {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.03em;
    transition: color 0.2s;
  }

  .mobile-nav a:hover { color: var(--accent); }

  .mobile-nav .mobile-cta {
    margin-top: 1rem;
    background: var(--accent);
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 100svh;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 9rem 4rem 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  }

  .hero-accent-blob {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,87,255,0.12) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
  }

  .hero-accent-blob-2 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,229,255,0.08) 0%, transparent 70%);
    bottom: 0; left: 10%;
    pointer-events: none;
  }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(0,87,255,0.08);
    border: 1px solid rgba(0,87,255,0.2);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
    flex-shrink: 0;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(2.6rem, 6vw, 6rem);
    line-height: 1.0;
    letter-spacing: -0.04em;
    color: var(--ink);
    max-width: 900px;
    animation: fadeUp 0.7s ease 0.1s both;
  }

  h1 .accent { color: var(--accent); }
  h1 .outline {
    -webkit-text-stroke: 2px var(--ink);
    color: transparent;
  }

  .hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--ink-soft);
    max-width: 520px;
    line-height: 1.7;
    margin-top: 1.8rem;
    animation: fadeUp 0.7s ease 0.2s both;
  }

  .hero-actions {
    display: flex; gap: 1rem; align-items: center;
    margin-top: 2.5rem;
    animation: fadeUp 0.7s ease 0.3s both;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

  .btn-secondary {
    color: var(--ink);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    border: 1.5px solid var(--border);
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

  .hero-stats {
    display: flex; gap: 3rem; margin-top: 4rem;
    animation: fadeUp 0.7s ease 0.4s both;
    flex-wrap: wrap;
  }

  .stat-item { }
  .stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
  }

  .stat-num .unit { color: var(--accent); }
  .stat-label { font-size: 0.82rem; color: var(--ink-muted); margin-top: 0.15rem; letter-spacing: 0.02em; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ─── MARQUEE ─── */
  .marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
    overflow: hidden;
    background: var(--surface);
  }

  @media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
  }

  .marquee-track {
    display: flex; gap: 3rem; width: max-content;
    animation: marquee 28s linear infinite;
  }

  .marquee-item {
    display: flex; align-items: center; gap: 0.7rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    white-space: nowrap;
  }

  .marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ─── SERVICES ─── */
  section { padding: 6rem 4rem; }

  .section-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
  }

  h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--ink);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 3.5rem;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }

  .service-card {
    background: var(--surface);
    padding: 2.5rem;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .service-card:hover { background: #fafafe; }
  .service-card:hover::after { transform: scaleX(1); }

  .service-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(0,87,255,0.08);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .service-card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
  }

  .service-card p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.65;
    font-weight: 300;
  }

  /* ─── ABOUT ─── */
  .about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--ink);
    color: #fff;
    border-radius: 24px;
    margin: 0 4rem;
    padding: 5rem;
  }

  .about-section h2 { color: #fff; }

  .about-section .section-tag { color: var(--electric); }

  .about-body {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    font-weight: 300;
    margin-top: 1.5rem;
  }

  .about-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 2rem;
  }

  .about-list li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
  }

  .about-list li::before {
    content: '→';
    color: var(--electric);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .about-metric {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem;
  }

  .about-metric-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
  }

  .about-metric-num span { color: var(--electric); }

  .about-metric-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin-top: 0.35rem;
    font-weight: 300;
    letter-spacing: 0.02em;
  }

  .about-metric.featured {
    grid-column: span 2;
    background: rgba(0,87,255,0.15);
    border-color: rgba(0,87,255,0.3);
  }

  .about-metric.featured .about-metric-num {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .about-metric.featured .featured-label {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-top: 0.25rem;
    font-family: var(--font-body);
    letter-spacing: 0;
  }

  /* ─── PROCESS ─── */
  .process-section { background: var(--surface); }

  .process-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 3.5rem;
    gap: 1.5rem;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
    opacity: 0.25;
  }

  .process-step {
    padding: 0 1.5rem;
    text-align: center;
  }

  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent);
    position: relative;
    z-index: 1;
  }

  .process-step h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
  }

  .process-step p {
    font-size: 0.84rem;
    color: var(--ink-muted);
    line-height: 1.6;
    font-weight: 300;
  }

  /* ─── TECH ─── */
  .tech-section { padding: 5rem 4rem; }

  .tech-header { text-align: center; margin-bottom: 3rem; }

  .tech-grid {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    justify-content: center;
  }

  .tech-pill {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 0.55rem 1.3rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: border-color 0.2s, color 0.2s;
  }

  .tech-pill:hover { border-color: var(--accent); color: var(--accent); }

  /* ─── CTA ─── */
  .cta-section {
    margin: 0 4rem 5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #0040d4 100%);
    border-radius: 24px;
    padding: 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .cta-section h2 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    position: relative;
  }

  .cta-section p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-top: 1rem;
    font-weight: 300;
    position: relative;
  }

  .cta-section .btn-white {
    background: #fff;
    color: var(--accent);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    position: relative;
    transition: transform 0.2s;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  .cta-section .btn-white:hover { transform: translateY(-2px); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
    padding: 3rem 4rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
  }

  .footer-brand .logo { color: #fff; font-size: 1.2rem; }
  .footer-brand .logo span { color: var(--electric); }

  .footer-brand p {
    font-size: 0.84rem;
    line-height: 1.65;
    margin-top: 0.75rem;
    font-weight: 300;
    max-width: 240px;
  }

  footer h4 {
    font-family: var(--font-head);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
  }

  footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

  footer ul a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
  }

  footer ul a:hover { color: var(--electric); }

  .footer-bottom {
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
  }
  .footer-bottom a { color: inherit; text-decoration: none; transition: color .2s; }
  .footer-bottom a:hover { color: rgba(255,255,255,0.65); }

  /* ─── SCROLL REVEALS ─── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    @keyframes fadeUp { from { opacity: 1; transform: none; } }
    @keyframes pulse { 0%, 100% { opacity: 1; transform: none; } }
  }

  /* ─── RESPONSIVE: tablet (≤900px) ─── */
  @media (max-width: 900px) {
    body > nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    section { padding: 4rem 1.5rem; }
    .hero { padding: 7rem 1.5rem 3rem; }
    .hero-accent-blob { width: 300px; height: 300px; }
    .hero-accent-blob-2 { width: 200px; height: 200px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .about-section { grid-template-columns: 1fr; margin: 0 1.5rem; padding: 3rem 2rem; gap: 2.5rem; }
    .about-visual { grid-template-columns: 1fr 1fr; }
    .about-metric.featured { grid-column: span 2; }
    .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .process-steps::before { display: none; }
    .process-header { flex-direction: column; align-items: flex-start; }
    .tech-section { padding: 4rem 1.5rem; }
    .cta-section { margin: 0 1.5rem 3rem; padding: 3rem 2rem; }
    footer { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 1.5rem; }
    .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
    .hero-stats { gap: 1.5rem; }
  }

  /* ─── RESPONSIVE: mobile (≤600px) ─── */
  @media (max-width: 600px) {
    h2 br { display: none; }
    .hero { padding: 6rem 1.25rem 2.5rem; min-height: 100svh; }
    h1 { font-size: clamp(2.2rem, 10vw, 3rem); line-height: 1.05; }
    h1 .outline { -webkit-text-stroke-width: 1.5px; }
    .hero-sub { font-size: 0.95rem; margin-top: 1.25rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { width: 100%; justify-content: center; }
    .hero-stats { gap: 1.25rem; }
    .stat-item { flex: 0 0 calc(50% - 0.625rem); }
    .stat-num { font-size: 1.6rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 1.75rem; }
    .about-section { padding: 2.5rem 1.5rem; border-radius: 16px; }
    .about-visual { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .about-metric { padding: 1.25rem; }
    .about-metric-num { font-size: 1.6rem; }
    .about-metric.featured .about-metric-num { font-size: 1.3rem; }
    .about-metric.featured .featured-label { font-size: 0.85rem; }
    .process-steps { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-step { padding: 0; text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
    .step-num { margin: 0 0 1rem 0; }
    .tech-pill { font-size: 0.78rem; padding: 0.45rem 1rem; }
    .cta-section { padding: 2.5rem 1.5rem; border-radius: 16px; }
    .cta-section .btn-white { display: block; word-break: break-all; }
    footer { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem 1.25rem; }
    section { padding: 3.5rem 1.25rem; }
  }

  /* ─── RESPONSIVE: small mobile (≤380px) ─── */
  @media (max-width: 380px) {
    .logo { font-size: 1.2rem; }
    h1 { font-size: 2rem; }
    .about-visual { grid-template-columns: 1fr; }
    .about-metric.featured { grid-column: span 1; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .stat-item { flex: 0 0 auto; }
  }

  /* ─── PAGE HERO (sub-pages) ─── */
  .page-hero {
    padding: 9rem 4rem 4rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }

  .page-hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    max-width: 14ch;
    margin-top: 1.5rem;
  }

  .page-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--ink-soft);
    max-width: 600px;
    line-height: 1.7;
    margin-top: 1.5rem;
    position: relative;
  }

  .breadcrumb {
    font-size: 0.82rem;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
    position: relative;
  }
  .breadcrumb a { color: var(--accent); text-decoration: none; }
  .breadcrumb a:hover { text-decoration: underline; }

  /* ─── DETAIL SERVICE CARDS ─── */
  .detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }

  .detail-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: border-color 0.2s, transform 0.2s;
  }
  .detail-card:hover { border-color: var(--accent); transform: translateY(-3px); }

  .detail-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 1.25rem 0 0.75rem;
  }
  .detail-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }

  .detail-list { list-style: none; margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
  .detail-list li {
    font-size: 0.85rem; color: var(--ink-soft); display: flex; gap: 0.6rem; align-items: flex-start;
  }
  .detail-list li::before { content: '→'; color: var(--accent); font-weight: 600; flex-shrink: 0; }

  .detail-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.85rem; font-weight: 600; color: var(--accent);
    text-decoration: none; letter-spacing: 0.01em;
    transition: gap 0.2s;
  }
  .detail-link:hover { gap: 0.7rem; }

  /* ─── LEGAL / PROSE PAGES ─── */
  .legal { max-width: 760px; }
  .legal .updated {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 2.5rem;
  }
  .legal h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 2.75rem 0 0.85rem;
  }
  .legal h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin: 1.75rem 0 0.6rem;
  }
  .legal p,
  .legal li {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1.8;
  }
  .legal p { margin-bottom: 1rem; }
  .legal ul { list-style: none; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: 0.55rem; }
  .legal ul li { display: flex; gap: 0.65rem; align-items: flex-start; }
  .legal ul li::before { content: '–'; color: var(--accent); flex-shrink: 0; }
  .legal a { color: var(--accent); text-decoration: none; }
  .legal a:hover { text-decoration: underline; }
  .legal .legal-note {
    margin-top: 3rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--ink-muted);
  }

  /* ─── NOTICE PANEL (e.g. no vacancies) ─── */
  .notice {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
  }
  .notice-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(0,87,255,0.08);
    border: 1px solid rgba(0,87,255,0.2);
    color: var(--accent);
    font-size: 0.78rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.4rem 1rem; border-radius: 50px;
    margin-bottom: 1.5rem;
  }
  .notice h2 { font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2.2rem); letter-spacing: -0.02em; }
  .notice p { font-size: 1rem; font-weight: 300; color: var(--ink-soft); line-height: 1.75; max-width: 480px; margin: 1rem auto 0; }
  .notice .btn-primary { margin-top: 2rem; }

  /* ─── PROCESS DETAIL (vertical) ─── */
  .timeline { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 1.5rem; max-width: 820px; }
  .timeline-step {
    display: grid; grid-template-columns: 72px 1fr; gap: 1.75rem; align-items: start;
    background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 2.25rem;
  }
  .timeline-step .step-num { margin: 0; }
  .timeline-step h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.6rem; }
  .timeline-step p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }

  /* ─── CONTACT ─── */
  .contact-layout {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: start;
    margin-top: 1rem;
  }

  .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

  .form-field { display: flex; flex-direction: column; gap: 0.45rem; }
  .form-field label { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.02em; }
  .form-field input,
  .form-field textarea,
  .form-field select {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--ink);
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
  }
  .form-field textarea { resize: vertical; min-height: 140px; }
  .form-field input:focus,
  .form-field textarea:focus,
  .form-field select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,87,255,0.12);
  }
  .contact-form .btn-primary { border: none; cursor: pointer; margin-top: 0.5rem; align-self: flex-start; }
  .form-note { font-size: 0.8rem; color: var(--ink-muted); margin-top: 0.25rem; }

  .contact-card {
    background: var(--ink); color: #fff; border-radius: 20px; padding: 2.5rem; align-self: stretch;
  }
  .contact-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 1.5rem; }
  .contact-detail { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-detail a, .contact-detail span { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.95rem; display: block; }
  .contact-detail a:hover { color: var(--electric); }
  .contact-detail .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); margin-bottom: 0.35rem; }

  /* ─── PAGE RESPONSIVE ─── */
  @media (max-width: 900px) {
    .page-hero { padding: 7rem 1.5rem 3rem; }
    .detail-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  @media (max-width: 600px) {
    .page-hero { padding: 6rem 1.25rem 2.5rem; }
    .detail-card, .timeline-step, .contact-card { padding: 1.75rem; }
    .timeline-step { grid-template-columns: 1fr; gap: 1rem; }
  }