    :root {
      --pine: #324a23;
      --pine-dark: #26391a;
      --olive: #576c43;
      --gold: #c4ad1c;
      --ink: #222a20;
      --muted: #626b5e;
      --paper: #f4f4ee;
      --white: #ffffff;
      --line: #d9ddd3;
      --soft: #eef1e9;
      --focus: #1e69c8;
      --shadow: 0 22px 64px rgba(38, 57, 26, 0.1);
      --card-shadow: 0 8px 22px rgba(38, 57, 26, 0.09), 0 2px 5px rgba(38, 57, 26, 0.04);
      --card-shadow-hover: 0 13px 28px rgba(38, 57, 26, 0.13), 0 3px 7px rgba(38, 57, 26, 0.05);
      --radius-lg: 24px;
      --radius-md: 12px;
    }

    * { box-sizing: border-box; }

    html {
      color-scheme: light;
      overflow-x: hidden;
    }

    body {
      min-width: 320px;
      min-height: 100svh;
      margin: 0;
      overflow-x: clip;
      color: var(--ink);
      background: var(--paper);
      font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -webkit-text-size-adjust: 100%;
    }

    .page {
      min-height: 100svh;
      display: grid;
      place-items: center;
      padding: 32px 20px;
    }

    .connect-card {
      position: relative;
      isolation: isolate;
      overflow: visible;
      width: min(100%, 500px);
      background: transparent;
      border: 0;
      border-radius: var(--radius-lg);
      box-shadow: none;
      padding: 40px;
    }

    .connect-card > header,
    .connect-card > .actions,
    .connect-card > .footer {
      position: relative;
      z-index: 1;
    }

    .team-portrait {
      position: absolute;
      top: -28px;
      right: -26px;
      z-index: 0;
      width: 320px;
      height: 320px;
      overflow: visible;
      pointer-events: none;
    }

    .team-portrait img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 49% 19%;
    }

    .team-portrait__ambient {
      opacity: 0.14;
      filter: blur(12px) saturate(0.66) brightness(1.12);
      transform: scale(1.08);
      -webkit-mask-image: radial-gradient(ellipse 76% 78% at 61% 30%, #000 4%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.3) 66%, transparent 100%);
      mask-image: radial-gradient(ellipse 76% 78% at 61% 30%, #000 4%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.3) 66%, transparent 100%);
    }

    .team-portrait__faces {
      opacity: 0.33;
      filter: saturate(0.84) contrast(0.98);
      -webkit-mask-image: radial-gradient(ellipse 73% 62% at 60% 28%, #000 5%, rgba(0, 0, 0, 0.92) 38%, rgba(0, 0, 0, 0.58) 59%, rgba(0, 0, 0, 0.16) 78%, transparent 100%);
      mask-image: radial-gradient(ellipse 73% 62% at 60% 28%, #000 5%, rgba(0, 0, 0, 0.92) 38%, rgba(0, 0, 0, 0.58) 59%, rgba(0, 0, 0, 0.16) 78%, transparent 100%);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }

    .brand-logo {
      position: relative;
      flex: none;
      width: min(68%, 250px);
      aspect-ratio: 584.4 / 181.5;
      isolation: isolate;
    }

    .brand-logo::before,
    .brand-logo::after {
      position: absolute;
      left: 23%;
      top: 50%;
      z-index: 2;
      display: block;
      content: "";
      pointer-events: none;
    }

    .brand-logo::before {
      width: 35%;
      aspect-ratio: 1;
      border: 1px solid rgba(50, 74, 35, 0.42);
      border-radius: 50%;
      animation: logo-ring 840ms cubic-bezier(0.22, 1, 0.36, 1) 760ms both;
    }

    .brand-logo::after {
      width: 9px;
      height: 9px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(196, 173, 28, 0.1);
      animation: logo-seed 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .brand-symbol,
    .brand-wordmark {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
    }

    .brand-symbol {
      z-index: 1;
      overflow: visible;
    }

    .brand-symbol .logo-shape {
      transform-box: fill-box;
      transform-origin: center;
      animation: logo-shape-build 980ms cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    .brand-symbol .logo-shape--left {
      animation-delay: 220ms;
      --shape-x: 18px;
      --shape-y: -10px;
      --shape-rotate: 13deg;
    }

    .brand-symbol .logo-shape--right {
      animation-delay: 360ms;
      --shape-x: -18px;
      --shape-y: -9px;
      --shape-rotate: -13deg;
    }

    .brand-symbol .logo-shape--center {
      animation-delay: 500ms;
      --shape-x: 0px;
      --shape-y: -18px;
      --shape-rotate: 0deg;
    }

    .brand-wordmark {
      z-index: 1;
      object-fit: contain;
      clip-path: inset(0 0 0 48%);
      animation: logo-wordmark-reveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) 1050ms both;
    }

    @keyframes logo-seed {
      0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.2);
      }
      28% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
      }
      72% {
        opacity: 0.78;
        transform: translate(-50%, -50%) scale(1.25);
      }
      100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.2);
      }
    }

    @keyframes logo-shape-build {
      0% {
        opacity: 0;
        transform: translate(var(--shape-x), var(--shape-y)) scale(0.18) rotate(var(--shape-rotate));
      }
      62% { opacity: 1; }
      100% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0);
      }
    }

    @keyframes logo-ring {
      0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.45);
      }
      32% { opacity: 0.72; }
      100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.16);
      }
    }

    @keyframes logo-wordmark-reveal {
      0% {
        opacity: 0;
        clip-path: inset(0 52% 0 48%);
        transform: translateX(-8px);
      }
      16% { opacity: 1; }
      100% {
        opacity: 1;
        clip-path: inset(0 0 0 48%);
        transform: translateX(0);
      }
    }

    .hero {
      position: relative;
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .tooth-model {
      position: relative;
      flex: none;
      width: 80px;
      height: 80px;
      overflow: hidden;
      border: 1px solid rgba(50, 74, 35, 0.08);
      border-radius: 50%;
      background: radial-gradient(circle at 34% 26%, #ffffff 0, #f1f3ec 58%, #e5eadf 100%);
      cursor: grab;
      isolation: isolate;
      touch-action: none;
      -webkit-tap-highlight-color: transparent;
      transform-origin: left center;
      animation: tooth-model-reveal 980ms cubic-bezier(0.16, 1, 0.3, 1) 1180ms both;
    }

    .tooth-model:active {
      cursor: grabbing;
    }

    .tooth-model::before {
      position: absolute;
      inset: 4%;
      z-index: -1;
      content: "";
      border-radius: 50%;
      background: radial-gradient(circle, rgba(196, 173, 28, 0.18), rgba(87, 108, 67, 0.07) 48%, transparent 74%);
      opacity: 0.7;
      transform: scale(0.92);
      transition: opacity 220ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .tooth-model.is-active::before {
      opacity: 1;
      transform: scale(1.04);
    }

    .tooth-model model-viewer {
      display: block;
      width: 100%;
      height: 100%;
      background: transparent;
      filter: drop-shadow(0 10px 14px rgba(50, 74, 35, 0.12));
      --poster-color: transparent;
      --progress-bar-color: transparent;
      transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), filter 360ms ease;
    }

    .tooth-model.is-active model-viewer {
      transform: scale(0.96);
      filter: drop-shadow(0 13px 17px rgba(50, 74, 35, 0.18));
    }

    @keyframes tooth-model-reveal {
      0% {
        opacity: 0;
        filter: blur(6px);
        transform: translateX(-20px) scale(0.58);
      }
      48% {
        opacity: 1;
        filter: blur(0);
      }
      76% {
        transform: translateX(3px) scale(1.035);
      }
      100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1);
      }
    }

    h1 {
      margin: 0;
      color: var(--pine);
      font-family: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
      font-size: clamp(2.25rem, 7vw, 2.8rem);
      font-weight: 400;
      letter-spacing: -0.035em;
      line-height: 1.05;
      text-wrap: balance;
    }

    .intro {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 1rem;
    }

    .actions {
      display: grid;
      gap: 12px;
    }

    .action {
      display: grid;
      grid-template-columns: 24px 1fr 18px;
      align-items: center;
      gap: 14px;
      color: var(--ink);
      text-decoration: none;
      border-radius: var(--radius-md);
      transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, box-shadow 180ms ease, transform 180ms ease;
      -webkit-tap-highlight-color: transparent;
    }

    .action--primary {
      min-height: 64px;
      padding: 16px 18px;
      color: var(--white);
      border: 1px solid var(--pine);
      background: var(--pine);
      box-shadow: 0 10px 24px rgba(50, 74, 35, 0.2);
    }

    .action--utility {
      min-height: 68px;
      padding: 12px 14px;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--card-shadow);
    }

    .action--primary:hover {
      background: var(--pine-dark);
      box-shadow: 0 12px 27px rgba(38, 57, 26, 0.24);
    }

    .action--utility:hover {
      border-color: rgba(87, 108, 67, 0.55);
      background: #fafbf8;
      box-shadow: var(--card-shadow-hover);
    }

    .action:active { background-color: var(--soft); }
    .action--primary:active { background-color: var(--pine-dark); }

    .action:focus-visible {
      outline: 3px solid var(--focus);
      outline-offset: 3px;
    }

    .action-icon,
    .arrow {
      width: 22px;
      height: 22px;
      display: grid;
      place-items: center;
    }

    .action-icon svg,
    .arrow svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .action--utility .action-icon {
      width: 40px;
      height: 40px;
      margin-left: -2px;
      color: var(--pine);
      border-radius: 10px;
      background: var(--soft);
    }

    .action--utility .action-icon svg {
      width: 21px;
      height: 21px;
    }

    .action--utility {
      grid-template-columns: 40px 1fr 18px;
    }

    .arrow {
      width: 17px;
      height: 17px;
      color: var(--olive);
    }

    .action--primary .arrow { color: var(--gold); }

    .action-copy { min-width: 0; }

    .action-title {
      display: block;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.01em;
    }

    .action-detail {
      display: block;
      margin-top: 2px;
      color: var(--muted);
      font-size: 0.875rem;
      line-height: 1.35;
    }

    .action--primary .action-title { font-size: 1.0625rem; }

    .secondary-actions {
      display: contents;
    }

    .action--secondary {
      min-height: 56px;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--white);
      box-shadow: var(--card-shadow);
    }

    .action--secondary:hover {
      border-color: rgba(87, 108, 67, 0.55);
      background: #fafbf8;
      box-shadow: var(--card-shadow-hover);
    }

    @media (hover: hover) {
      .action--primary:hover,
      .action--utility:hover,
      .action--secondary:hover {
        transform: translateY(-2px);
      }
    }

    .action--social {
      width: max-content;
      min-height: 44px;
      margin-top: 2px;
      padding: 8px 4px;
      grid-template-columns: 22px auto;
      color: var(--olive);
    }

    .action--social:hover { color: var(--pine-dark); }

    .action--social .action-title {
      font-size: 0.9375rem;
      font-weight: 600;
    }

    .action--social .action-detail {
      font-size: 0.8125rem;
    }

    .social-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
      gap: 16px;
    }

    .social-row .action--social {
      margin-top: 0;
    }

    .social-row .tooth-model {
      width: 72px;
      height: 72px;
      margin-left: auto;
      transform-origin: center;
    }

    .footer {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px 16px;
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.875rem;
    }

    .footer address { font-style: normal; }

    .languages {
      color: var(--olive);
      font-weight: 600;
    }

    @media (max-width: 639px) {
      .page {
        display: block;
        padding: max(24px, env(safe-area-inset-top)) max(20px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(20px, env(safe-area-inset-left));
      }

      .connect-card {
        width: 100%;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
      }

      .brand { gap: 10px; margin-bottom: 24px; }
      .brand-logo { width: min(64%, 230px); }

      .team-portrait {
        top: -28px;
        right: -64px;
        width: 250px;
        height: 250px;
      }

      .hero { margin-bottom: 22px; }

      .social-row { min-height: 68px; }
      .social-row .tooth-model { width: 64px; height: 64px; }
    }

    @media (min-width: 640px) {
      .page { padding: 48px 24px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .brand-logo::before,
      .brand-logo::after { display: none; }

      .brand-symbol .logo-shape,
      .brand-wordmark { animation: none; }

      .tooth-model {
        animation: none;
        pointer-events: none;
      }

      .tooth-model::before,
      .tooth-model model-viewer { transition: none; }

      .action { transform: none !important; }

      *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
    }
