:root {
  --bg: #f6f2ec;
  --paper: #fffaf2;
  --paper-strong: #fff4d5;
  --ink: #1d1a16;
  --ink-soft: #4a443c;
  --ink-muted: #6e6759;
  --rust: #a44a26;
  --rust-deep: #7a3318;
  --blue: #17364a;
  --green: #31543f;
  --gold: #d5a941;
  --line: rgba(29, 26, 22, .16);
  --line-soft: rgba(29, 26, 22, .08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--rust);
  text-decoration: none;
}

a:hover {
  color: var(--rust-deep);
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(246, 242, 236, .96);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mark {
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 22px;
  font-weight: 650;
}

.nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 15px;
}

.nav a {
  color: inherit;
}

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

.hero {
  padding: 70px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: 58px;
}

h2 {
  font-size: 34px;
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
  color: var(--ink-soft);
}

.lede {
  max-width: 690px;
  margin-top: 22px;
  font-size: 20px;
}

.hero-actions,
.card-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
}

.button:hover {
  border-color: var(--rust-deep);
  background: var(--rust-deep);
  color: var(--bg);
}

.button-secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--rust);
  background: var(--paper);
  color: var(--rust);
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(29, 26, 22, .10);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-media-caption {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 15px;
}

.section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head p {
  margin-top: 12px;
}

.sample-grid,
.feature-grid,
.metric-grid {
  display: grid;
  gap: 18px;
}

.sample-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sample-card,
.feature,
.metric,
.password-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(29, 26, 22, .08);
}

.sample-card {
  overflow: hidden;
}

.sample-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.domain-preview {
  min-height: 224px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(29, 26, 22, .08), rgba(255, 250, 242, .08)),
    var(--blue);
  color: var(--paper-strong);
}

.domain-preview--research {
  background:
    linear-gradient(135deg, rgba(29, 26, 22, .34), rgba(49, 84, 63, .84)),
    var(--green);
}

.domain-preview--insight {
  background:
    linear-gradient(135deg, rgba(23, 54, 74, .95), rgba(59, 130, 246, .72)),
    var(--blue);
}

.domain-preview strong {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 34px;
  line-height: 1.02;
}

.domain-preview span {
  color: rgba(255, 244, 213, .84);
  font-size: 15px;
  font-weight: 700;
}

.domain-preview .domain-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sample-body,
.feature,
.metric {
  padding: 20px;
}

.sample-body p,
.feature p,
.metric p {
  margin-top: 10px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 800;
}

.private-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.private-number {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper-strong);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
}

.private-number:hover {
  background: var(--rust-deep);
  color: var(--paper-strong);
}

.note {
  max-width: 640px;
  margin-top: 14px;
  color: var(--ink-muted);
  font-size: 15px;
}

.proposal-band {
  background: var(--blue);
  color: var(--paper-strong);
}

.proposal-band p,
.proposal-band .eyebrow {
  color: rgba(255, 244, 213, .82);
}

.proposal-band .button {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.proposal-band .button-secondary {
  border-color: rgba(255, 244, 213, .42);
  background: transparent;
  color: var(--paper-strong);
}

.metric strong {
  display: block;
  color: var(--rust);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.mini-browser {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(29, 26, 22, .10);
}

.mini-browser-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
  background: #eee6d7;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rust);
}

.dot:nth-child(2) {
  background: var(--gold);
}

.dot:nth-child(3) {
  background: var(--green);
}

.mini-browser img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.widget-demo {
  padding: 34px 0 70px;
  background: var(--paper-strong);
}

.password-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background:
    linear-gradient(135deg, rgba(23, 54, 74, .14), rgba(164, 74, 38, .10)),
    var(--bg);
}

.password-panel {
  width: min(520px, 100%);
  padding: 28px;
}

.password-panel h1 {
  font-size: 36px;
}

.password-panel p {
  margin-top: 12px;
}

.password-form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.password-form label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.password-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
}

.error {
  border: 1px solid rgba(164, 74, 38, .28);
  border-radius: 6px;
  background: rgba(164, 74, 38, .08);
  padding: 10px 12px;
  color: var(--rust-deep);
  font-size: 15px;
}

.private-demo-shell {
  --tri-ink: #141212;
  --tri-charcoal: #201f1d;
  --tri-cream: #fff4d5;
  --tri-paper: #fffaf0;
  --tri-red: #b7322c;
  --tri-blue: #0d2b3b;
  --tri-gold: #d5a941;
  --tri-line: rgba(255, 244, 213, .16);
  background: var(--tri-cream);
  color: var(--tri-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tri-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.tri-preview-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 14px;
  background: var(--tri-gold);
  color: var(--tri-ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.tri-preview-bar a {
  color: var(--tri-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tri-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--tri-line);
  background: rgba(20, 18, 18, .96);
  backdrop-filter: blur(12px);
}

.tri-header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 24px;
  align-items: center;
}

.tri-logo {
  border: 0;
}

.tri-logo img {
  width: 158px;
}

.tri-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.tri-nav a {
  color: var(--tri-cream);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tri-header-cta,
.tri-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 4px;
  padding: 10px 16px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.tri-header-cta,
.tri-button-primary {
  background: var(--tri-gold);
  color: var(--tri-ink);
}

.tri-header-cta:hover,
.tri-button-primary:hover {
  background: #f0c75b;
  color: var(--tri-ink);
}

.tri-button-secondary {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.tri-button-secondary:hover {
  border-color: var(--tri-gold);
  color: var(--tri-gold);
}

.tri-preview-site {
  background: var(--tri-cream);
}

.tri-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 68px;
  background:
    linear-gradient(90deg, rgba(20, 18, 18, .96), rgba(20, 18, 18, .75)),
    url("https://images.squarespace-cdn.com/content/v1/615f1153a0a91e732701bca6/896aeb14-c9b4-4b74-a912-2aa2a45b1d97/Logo+Background+Grey.png?format=2500w") center / cover no-repeat;
  color: var(--tri-cream);
}

.tri-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: linear-gradient(90deg, var(--tri-red) 0 20%, var(--tri-gold) 20% 40%, var(--tri-blue) 40% 60%, var(--tri-red) 60% 80%, var(--tri-gold) 80% 100%);
}

.tri-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 44px;
  align-items: center;
}

.tri-kicker {
  margin: 0 0 12px;
  color: var(--tri-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tri-hero h1,
.tri-event-center h2,
.tri-contact h2,
.tri-inquiry-form h3 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .96;
  text-transform: uppercase;
}

.tri-hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 7vw, 92px);
}

.tri-hero p:not(.tri-kicker),
.tri-event-center p,
.tri-contact p {
  max-width: 660px;
  margin-top: 18px;
  color: rgba(255, 244, 213, .84);
  font-size: 19px;
}

.tri-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tri-hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 244, 213, .18);
  border-radius: 8px;
  background: var(--tri-charcoal);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.tri-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tri-launch-note {
  border-bottom: 1px solid rgba(20, 18, 18, .12);
  background: var(--tri-paper);
  color: var(--tri-ink);
}

.tri-launch-note-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  color: #5f574c;
}

.tri-launch-note strong {
  color: var(--tri-red);
}

.tri-section {
  padding: 58px 0;
  border-top: 1px solid rgba(20, 18, 18, .12);
}

.tri-section-paper {
  background: var(--tri-paper);
}

.tri-event-center {
  padding: 68px 0;
  background: var(--tri-blue);
  color: var(--tri-cream);
}

.tri-event-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 42px;
  align-items: start;
}

.tri-event-center h2,
.tri-contact h2 {
  font-size: clamp(38px, 5vw, 62px);
}

.tri-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.tri-amenities span {
  border: 1px solid rgba(255, 244, 213, .26);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--tri-cream);
  font-size: 13px;
  font-weight: 800;
}

.tri-inquiry-form,
.tri-contact-card {
  border: 1px solid rgba(255, 244, 213, .18);
  border-radius: 8px;
  background: rgba(255, 244, 213, .08);
  padding: 22px;
}

.tri-inquiry-form {
  display: grid;
  gap: 12px;
}

.tri-inquiry-form h3 {
  font-size: 32px;
}

.tri-inquiry-form label {
  display: grid;
  gap: 6px;
  color: var(--tri-cream);
  font-size: 13px;
  font-weight: 900;
}

.tri-inquiry-form input,
.tri-inquiry-form select,
.tri-inquiry-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 244, 213, .24);
  border-radius: 4px;
  background: rgba(20, 18, 18, .34);
  color: var(--tri-cream);
  padding: 10px 11px;
  font: inherit;
}

.tri-inquiry-form textarea {
  resize: vertical;
}

.tri-contact {
  padding: 68px 0;
  background: var(--tri-charcoal);
  color: var(--tri-cream);
}

.tri-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 42px;
}

.tri-contact-card p {
  color: var(--tri-cream);
}

.tri-contact-card a {
  color: var(--tri-cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tri-footer {
  border-top: 0;
  background: var(--tri-ink);
  color: rgba(255, 244, 213, .68);
}

.tri-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px 0;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 42px;
  color: var(--ink-muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 860px) {
  .header-inner,
  .hero-grid {
    display: block;
  }

  .nav {
    margin-top: 12px;
  }

  .hero {
    padding: 48px 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-media {
    margin-top: 32px;
  }

  .sample-grid,
  .feature-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .tri-header {
    position: static;
  }

  .tri-header-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 16px 0;
  }

  .tri-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .tri-header-cta {
    width: 100%;
  }

  .tri-hero-grid,
  .tri-event-grid,
  .tri-contact-grid {
    grid-template-columns: 1fr;
  }

  .tri-hero-card {
    max-width: 460px;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .lede {
    font-size: 18px;
  }

  .private-number {
    width: 64px;
    height: 64px;
  }

  .tri-wrap {
    width: min(100% - 28px, 1180px);
  }

  .tri-preview-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    text-align: left;
  }

  .tri-hero {
    padding: 44px 0 54px;
  }

  .tri-hero h1 {
    font-size: 48px;
  }

  .tri-hero p:not(.tri-kicker),
  .tri-event-center p,
  .tri-contact p {
    font-size: 17px;
  }

  .tri-button,
  .tri-header-cta {
    width: 100%;
  }
}
