:root {
  --cream: #f5efe3;
  --cream-soft: #fbf7ed;
  --paper: #fffdf7;
  --ink: #17201c;
  --muted: #637069;
  --line: rgba(36, 52, 45, 0.16);
  --green: #1f624b;
  --green-deep: #0e2c24;
  --teal: #3a968a;
  --gold: #d8b159;
  --mist: rgba(255, 253, 247, 0.76);
  --shadow: 0 22px 60px rgba(15, 44, 35, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--cream-soft);
  color: var(--ink);
}

body,
a,
button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
p {
  margin: 0;
}

.site-header {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  z-index: 10;
  width: min(100% - 56px, 1360px);
  min-height: 52px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: var(--green-deep);
}

.site-header-solid {
  position: relative;
  top: auto;
  margin-top: 24px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 8px;
}

.nav-pill {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(23, 32, 28, 0.1);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 12px 34px rgba(15, 44, 35, 0.1);
  backdrop-filter: blur(18px);
}

.nav-pill a {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: rgba(14, 44, 36, 0.72);
  font-size: 14px;
  font-weight: 720;
}

.nav-pill a:hover,
.nav-pill a:focus-visible {
  background: #fff;
  color: var(--green-deep);
}

.header-actions {
  display: inline-flex;
  justify-content: end;
  align-items: center;
  gap: 14px;
}

.header-contact {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.text-link {
  color: rgba(14, 44, 36, 0.72);
  font-size: 14px;
  font-weight: 720;
}

.social-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(14, 44, 36, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.64);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 780;
  box-shadow: 0 10px 24px rgba(15, 44, 35, 0.08);
}

.social-link:hover,
.social-link:focus-visible {
  background: #fffdf7;
  border-color: rgba(14, 44, 36, 0.22);
}

.social-link-muted {
  color: rgba(14, 44, 36, 0.72);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
}

.button-dark {
  background: var(--green-deep);
  color: #fffdf7;
  box-shadow: 0 14px 28px rgba(14, 44, 36, 0.22);
}

.button-light {
  background: #fffdf7;
  color: var(--green-deep);
  box-shadow: 0 14px 28px rgba(14, 44, 36, 0.16);
}

.button-ghost {
  border-color: rgba(255, 253, 247, 0.56);
  background: rgba(255, 253, 247, 0.18);
  color: #fffdf7;
  backdrop-filter: blur(12px);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--green-deep);
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}

.hero-home {
  display: grid;
  place-items: center;
  padding: 132px 28px 78px;
}

.hero-image,
.about-image {
  display: block;
  object-fit: cover;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  transform: scale(1.035);
  transform-origin: 50% 52%;
  animation: hero-drift 24s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(245, 239, 227, 0.7) 0%, rgba(245, 239, 227, 0.08) 40%, rgba(10, 28, 23, 0.42) 100%),
    radial-gradient(ellipse at 50% 48%, rgba(255, 253, 247, 0.58), transparent 34%),
    radial-gradient(circle at 50% 18%, rgba(255, 253, 247, 0.58), transparent 34%);
}

.bridge-animation {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.bridge-animation::after {
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  top: 50%;
  height: 118px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255, 246, 202, 0.36), transparent 58%),
    linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.2), transparent);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: rotate(-1.5deg);
  animation: bridge-breathe 5.6s ease-in-out infinite;
}

.bridge-glow,
.bridge-mist {
  position: absolute;
  display: block;
  pointer-events: none;
}

.bridge-glow {
  left: 10%;
  right: 10%;
  top: 51%;
  height: 82px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 12% 52%, rgba(255, 243, 190, 0.48), transparent 18%),
    linear-gradient(100deg, transparent 0%, rgba(255, 247, 204, 0.08) 26%, rgba(255, 244, 184, 0.56) 45%, rgba(255, 255, 255, 0.3) 51%, rgba(255, 244, 184, 0.1) 63%, transparent 100%);
  filter: blur(9px);
  mix-blend-mode: screen;
  opacity: 0.62;
  transform: rotate(-1.5deg) translateX(-28%);
  animation: bridge-glow-pass 8s ease-in-out infinite;
  animation-delay: -2.8s;
}

.bridge-mist {
  left: -12%;
  right: -12%;
  top: 56%;
  height: 180px;
  background:
    radial-gradient(ellipse at 20% 44%, rgba(255, 253, 247, 0.28), transparent 28%),
    radial-gradient(ellipse at 56% 50%, rgba(255, 253, 247, 0.2), transparent 34%),
    radial-gradient(ellipse at 82% 44%, rgba(255, 253, 247, 0.22), transparent 30%);
  filter: blur(16px);
  opacity: 0.72;
  transform: translateX(-3%);
  animation: bridge-mist-drift 14s ease-in-out infinite alternate;
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 960px);
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--green);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.about-hero h1 {
  color: var(--green);
  font-size: 9rem;
  line-height: 0.86;
  font-weight: 650;
  letter-spacing: 0;
}

.hero-copy {
  width: min(100%, 640px);
  margin-top: 32px;
  color: rgba(255, 253, 247, 0.96);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 520;
  text-shadow: 0 2px 4px rgba(4, 18, 14, 0.58), 0 14px 32px rgba(4, 18, 14, 0.52);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  left: 42px;
  bottom: 42px;
  width: min(310px, calc(100% - 84px));
  color: #fffdf7;
  text-shadow: 0 2px 18px rgba(4, 18, 14, 0.42);
}

.hero-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 850;
}

.hero-note p {
  font-size: 13px;
  line-height: 1.45;
}

.spark {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.22);
  font-size: 19px;
  font-weight: 850;
}

.section {
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
  padding: 92px 0;
}

.intro-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.workflow-section {
  padding-top: 28px;
}

.workflow-heading {
  width: min(100%, 790px);
  margin-bottom: 38px;
}

.workflow-heading h2 {
  color: var(--green-deep);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 680;
  letter-spacing: -0.045em;
}

.workflow-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.idea-tuning {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: end;
  margin: 0 0 30px;
  padding: 32px;
  border: 1px solid rgba(31, 98, 75, 0.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 8% 12%, rgba(216, 177, 89, 0.2), transparent 26%),
    linear-gradient(135deg, #f1f7ee, #fffaf0);
}

.idea-tuning-heading h3 {
  color: var(--green-deep);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
  font-weight: 720;
  letter-spacing: -0.035em;
}

.idea-tuning-heading > p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.idea-tuning-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.idea-tuning-pillars article {
  min-height: 188px;
  display: grid;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(31, 98, 75, 0.14);
  border-radius: 9px;
  background: rgba(255, 253, 247, 0.68);
}

.idea-tuning-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--green-deep);
  color: var(--gold);
  font-size: 18px;
}

.idea-tuning-pillars h4 {
  margin: 0 0 10px;
  color: var(--green-deep);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 820;
}

.idea-tuning-pillars p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 18px 46px rgba(36, 52, 45, 0.07);
}

.workflow-step {
  position: relative;
  min-height: 326px;
  padding: 26px 22px 28px;
  border-right: 1px solid var(--line);
  background: var(--paper);
}

.workflow-step:last-child {
  border-right: 0;
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 49px;
  right: -5px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(31, 98, 75, 0.55);
  border-right: 1px solid rgba(31, 98, 75, 0.55);
  background: var(--paper);
  transform: rotate(45deg);
}

.workflow-step-highlight {
  background: linear-gradient(160deg, #edf7f1, #f8f4e8);
}

.workflow-step-highlight::after {
  background: #f6f5e9 !important;
}

.workflow-step-final {
  background: var(--green-deep);
  color: #fffdf7;
}

.workflow-number {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.workflow-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 30px 0 36px;
  border: 1px solid rgba(31, 98, 75, 0.22);
  border-radius: 50%;
  color: var(--green);
  font-size: 21px;
  font-weight: 760;
}

.workflow-step h3 {
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: 1.34rem;
  line-height: 1.1;
  font-weight: 760;
}

.workflow-step p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.workflow-step-final .workflow-number {
  color: rgba(216, 177, 89, 0.98);
}

.workflow-step-final .workflow-icon {
  border-color: rgba(255, 253, 247, 0.28);
  color: #fffdf7;
}

.workflow-step-final h3,
.workflow-step-final p {
  color: #fffdf7;
}

.workflow-step-final p {
  color: rgba(255, 253, 247, 0.76);
}

.workflow-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 2px 0;
}

.workflow-footer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.workflow-footer strong {
  color: var(--green-deep);
}

.section-heading h2,
.split-section h2,
.founder-strip h2,
.closing-cta h2 {
  color: var(--green-deep);
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 680;
  letter-spacing: 0;
}

.lead,
.split-copy p,
.founder-strip p,
.about-copy p,
.principle-list p,
.capability p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 16px;
}

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

.feature-card,
.capability,
.principle-list article {
  min-height: 248px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(36, 52, 45, 0.06);
}

.feature-number {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.feature-card h2,
.capability h2,
.principle-list h2 {
  margin-bottom: 16px;
  color: var(--green-deep);
  font-size: 1.65rem;
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: 0;
}

.feature-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 22px;
  color: var(--green);
  font-size: 14px;
  font-weight: 820;
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--green-deep);
  text-decoration: underline;
}

.split-section,
.founder-strip {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 58px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.split-copy {
  display: grid;
  gap: 26px;
  justify-items: start;
}

.capability-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 16px;
}

.capability {
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(241, 247, 236, 0.96)),
    var(--paper);
}

.founder-strip {
  padding-bottom: 110px;
}

.about-hero {
  width: min(100% - 56px, 1360px);
  min-height: 76svh;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
}

.about-copy {
  display: grid;
  justify-items: start;
}

.about-copy h1 {
  margin-bottom: 24px;
  color: var(--green-deep);
  font-size: 6.2rem;
}

.about-copy p {
  width: min(100%, 590px);
  margin-bottom: 28px;
}

.about-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.assistant-coming-soon {
  width: min(100% - 56px, 860px);
  min-height: calc(100svh - 178px);
  margin: 32px auto 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.assistant-coming-soon-copy {
  max-width: 720px;
  padding: 64px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.assistant-coming-soon h1 {
  margin-bottom: 20px;
  color: var(--green-deep);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.95;
  font-weight: 680;
}

.assistant-coming-soon p:not(.eyebrow) {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.assistant-coming-soon .button {
  margin-top: 30px;
}

.blog-hero {
  width: min(100% - 56px, 1180px);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: end;
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}

.blog-hero-copy {
  display: grid;
  justify-items: start;
}

.blog-hero h1 {
  margin-bottom: 24px;
  color: var(--green-deep);
  font-size: 4.8rem;
  line-height: 0.98;
  font-weight: 680;
  letter-spacing: 0;
}

.blog-hero p {
  width: min(100%, 720px);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.blog-meta {
  margin-top: 20px;
  color: var(--green);
  font-size: 14px;
  font-weight: 820;
  text-transform: uppercase;
}

.blog-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-article {
  width: min(100% - 56px, 820px);
  margin: 0 auto;
  padding: 76px 0 28px;
}

.blog-article p {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.82;
}

.blog-article p + p {
  margin-top: 28px;
}

.article-lead {
  color: var(--green-deep);
  font-size: 1.55rem;
  line-height: 1.45;
  font-weight: 680;
}

.article-signoff {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-signoff p {
  color: var(--green-deep);
  font-size: 16px;
  line-height: 1.5;
}

.article-signoff p + p {
  margin-top: 4px;
}

.principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-closing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 38px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.blog-closing h2 {
  color: var(--green-deep);
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 680;
  letter-spacing: 0;
}

.blog-closing p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.blog-closing-copy {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.blog-closing .button {
  justify-self: start;
}

.closing-cta {
  display: grid;
  justify-items: center;
  text-align: center;
  border-top: 1px solid var(--line);
}

.policy-hero {
  width: min(100% - 56px, 1180px);
  min-height: 52svh;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 42px;
  align-items: end;
  padding: 72px 0 42px;
  border-bottom: 1px solid var(--line);
}

.policy-hero-copy {
  display: grid;
  justify-items: start;
}

.policy-hero h1 {
  margin-bottom: 24px;
  color: var(--green-deep);
  font-size: 6.2rem;
  line-height: 1;
  font-weight: 680;
  letter-spacing: 0;
}

.policy-hero p {
  width: min(100%, 720px);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.policy-quick-list {
  display: grid;
  gap: 10px;
  align-self: center;
}

.policy-quick-list a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 820;
  box-shadow: 0 16px 42px rgba(36, 52, 45, 0.05);
}

.policy-quick-list a::after {
  content: "Open";
  color: var(--teal);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.policy-card {
  min-height: 390px;
  display: grid;
  align-content: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(36, 52, 45, 0.06);
}

.policy-card h2 {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 1.65rem;
  line-height: 1.16;
  font-weight: 720;
  letter-spacing: 0;
}

.policy-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.policy-date {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 820;
}

.policy-doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.policy-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.policy-contact h2 {
  color: var(--green-deep);
  font-size: 3.4rem;
  line-height: 1.08;
  font-weight: 680;
  letter-spacing: 0;
}

.policy-contact-links {
  display: grid;
  gap: 10px;
}

.policy-contact-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--green);
  font-size: 18px;
  font-weight: 820;
}

.policy-contact-links a:hover,
.policy-contact-links a:focus-visible {
  color: var(--green-deep);
  text-decoration: underline;
}

.mail-page {
  background:
    linear-gradient(180deg, rgba(251, 247, 237, 0.98), rgba(245, 239, 227, 0.88)),
    var(--cream-soft);
}

.mail-hero {
  width: min(100% - 56px, 1180px);
  min-height: calc(100svh - 178px);
  margin: 32px auto 0;
  display: grid;
  align-items: center;
  padding: 28px 0 42px;
}

.mail-signup-shell {
  width: 100%;
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  overflow: hidden;
  border: 1px solid rgba(14, 44, 36, 0.14);
  border-radius: 8px;
  background: #050807;
  box-shadow: var(--shadow);
}

.mail-start-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-deep);
}

.mail-panel-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  filter: saturate(0.86) contrast(1.04);
}

.mail-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(140deg, rgba(14, 44, 36, 0.96) 0%, rgba(31, 98, 75, 0.84) 48%, rgba(58, 150, 138, 0.68) 100%),
    radial-gradient(circle at 78% 12%, rgba(255, 253, 247, 0.26), transparent 32%);
}

.mail-start-panel::after {
  content: "";
  position: absolute;
  inset: auto -22% -24% 8%;
  z-index: -1;
  height: 44%;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.2);
  filter: blur(42px);
}

.mail-start-content {
  min-height: 100%;
  display: grid;
  align-content: end;
  gap: 54px;
  padding: 48px;
  color: #fffdf7;
}

.mail-start-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(180px, 0.74fr);
  gap: 26px;
  align-items: end;
}

.mail-start-heading h1 {
  font-size: 3.2rem;
  line-height: 1.02;
  font-weight: 680;
  letter-spacing: 0;
}

.mail-start-heading .eyebrow {
  color: rgba(216, 177, 89, 0.92);
}

.mail-start-heading > p {
  color: rgba(255, 253, 247, 0.78);
  font-size: 14px;
  line-height: 1.55;
}

.mail-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mail-step {
  min-height: 128px;
  display: grid;
  align-content: start;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.13);
  backdrop-filter: blur(16px);
}

.mail-step-active {
  background: #fffdf7;
  color: var(--green-deep);
}

.mail-step span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.2);
  color: #fffdf7;
  font-size: 12px;
  font-weight: 850;
}

.mail-step-active span {
  background: var(--green-deep);
  color: #fffdf7;
}

.mail-step strong {
  max-width: 120px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 760;
}

.mail-form-panel {
  min-height: 540px;
  display: grid;
  align-content: center;
  padding: 48px;
  background: #050807;
  color: #fffdf7;
}

.mail-form-copy {
  text-align: center;
}

.mail-form-copy h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 720;
}

.mail-form-copy p {
  color: rgba(255, 253, 247, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.mail-provider-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}

.mail-provider-row a {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 8px;
  color: #fffdf7;
  font-size: 13px;
  font-weight: 780;
}

.mail-provider-row a:hover,
.mail-provider-row a:focus-visible {
  background: rgba(255, 253, 247, 0.08);
}

.mail-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 20px 0;
  color: rgba(255, 253, 247, 0.54);
  font-size: 12px;
}

.mail-divider::before,
.mail-divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 253, 247, 0.12);
}

.mail-static-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 12px;
}

.newsletter-static-form {
  margin-top: 30px;
}

.mail-static-form label {
  display: grid;
  gap: 7px;
}

.mail-static-form span {
  color: rgba(255, 253, 247, 0.72);
  font-size: 12px;
  font-weight: 720;
}

.mail-static-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 253, 247, 0.1);
  border-radius: 8px;
  padding: 0 13px;
  background: rgba(255, 253, 247, 0.08);
  color: #fffdf7;
  font-size: 13px;
  outline: none;
}

.mail-static-form input::placeholder {
  color: rgba(255, 253, 247, 0.4);
}

.mail-static-form input:focus {
  border-color: rgba(216, 177, 89, 0.58);
  box-shadow: 0 0 0 3px rgba(216, 177, 89, 0.12);
}

.mail-field-wide {
  grid-column: 1 / -1;
}

.newsletter-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 18px;
}

.newsletter-choice {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid rgba(255, 253, 247, 0.1);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.06);
  color: rgba(255, 253, 247, 0.76);
  font-size: 13px;
  font-weight: 720;
}

.newsletter-choice input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
}

.mail-password-note {
  margin-top: 8px;
  color: rgba(255, 253, 247, 0.54);
  font-size: 12px;
}

.mail-submit {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
}

.mail-login-note {
  margin-top: 18px;
  color: rgba(255, 253, 247, 0.54);
  text-align: center;
  font-size: 13px;
}

.mail-login-note a {
  color: #fffdf7;
  font-weight: 780;
}

.mail-login-note a:hover,
.mail-login-note a:focus-visible {
  text-decoration: underline;
}

.mail-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
}

.community-page {
  background:
    linear-gradient(180deg, rgba(251, 247, 237, 0.98), rgba(236, 246, 240, 0.88)),
    var(--cream-soft);
}

.community-hero {
  width: min(100% - 56px, 1180px);
  min-height: calc(100svh - 154px);
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 42px 0 56px;
}

.community-copy {
  display: grid;
  justify-items: start;
}

.community-copy h1 {
  margin-bottom: 24px;
  color: var(--green-deep);
  font-size: 4.9rem;
  line-height: 0.98;
  font-weight: 680;
  letter-spacing: 0;
}

.community-copy p {
  width: min(100%, 570px);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.community-frame-shell {
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.community-signup-frame {
  width: 100%;
  height: 690px;
  display: block;
  border: 0;
  background: #fff;
}

.community-update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 24px;
}

.company-footer {
  width: min(100% - 56px, 1180px);
  margin: 0 auto;
  padding: 28px 0 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.company-footer a {
  color: var(--green);
  font-weight: 820;
}

.company-footer a:hover,
.company-footer a:focus-visible {
  color: var(--green-deep);
  text-decoration: underline;
}

@keyframes hero-drift {
  from {
    transform: scale(1.035) translate3d(-0.35%, 0, 0);
  }

  to {
    transform: scale(1.065) translate3d(0.35%, -0.45%, 0);
  }
}

@keyframes bridge-glow-pass {
  0% {
    opacity: 0.08;
    transform: rotate(-1.5deg) translateX(-34%);
  }

  44% {
    opacity: 0.72;
  }

  74% {
    opacity: 0.42;
  }

  100% {
    opacity: 0.08;
    transform: rotate(-1.5deg) translateX(34%);
  }
}

@keyframes bridge-breathe {
  0%,
  100% {
    opacity: 0.28;
    transform: rotate(-1.5deg) scaleX(0.96);
  }

  50% {
    opacity: 0.52;
    transform: rotate(-1.5deg) scaleX(1.04);
  }
}

@keyframes bridge-mist-drift {
  from {
    transform: translateX(-4%) translateY(0);
  }

  to {
    transform: translateX(4%) translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .bridge-glow,
  .bridge-mist,
  .bridge-animation::after {
    animation: none;
  }

  .hero-image {
    transform: scale(1.035);
  }

  .bridge-glow {
    opacity: 0.24;
    transform: rotate(-1.5deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    top: auto;
    width: min(100% - 28px, 760px);
    margin-top: 14px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .header-actions {
    justify-content: center;
    flex-wrap: wrap;
    max-width: min(100%, 560px);
  }

  .header-contact {
    max-width: min(100%, 560px);
  }

  .hero {
    min-height: 84svh;
  }

  .hero-home {
    margin-top: -118px;
    padding-top: 178px;
  }

  .hero h1 {
    font-size: 6.2rem;
  }

  .about-hero,
  .blog-hero,
  .community-hero,
  .mail-hero,
  .intro-section,
  .split-section,
  .founder-strip,
  .blog-closing,
  .policy-hero,
  .policy-contact {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .capability-band,
  .principle-list,
  .policy-grid,
  .community-update-grid,
  .mail-feature-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .idea-tuning {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    min-height: 280px;
    border-bottom: 1px solid var(--line);
  }

  .workflow-step:nth-child(even) {
    border-right: 0;
  }

  .workflow-step:nth-child(4)::after {
    display: none;
  }

  .workflow-step-final {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .about-hero {
    min-height: 0;
    padding: 56px 0 18px;
  }

  .about-copy h1 {
    font-size: 4.6rem;
  }

  .blog-hero h1 {
    font-size: 3.8rem;
  }

  .community-hero {
    min-height: 0;
    padding-top: 56px;
  }

  .community-copy h1 {
    font-size: 3.9rem;
  }

  .mail-hero {
    min-height: 0;
    padding-top: 36px;
  }

  .mail-signup-shell {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .mail-start-panel,
  .mail-form-panel {
    min-height: 0;
  }

  .mail-start-content {
    min-height: 420px;
  }

  .policy-hero {
    min-height: 0;
    padding-top: 56px;
  }

  .policy-hero h1 {
    font-size: 4.6rem;
  }
}

@media (max-width: 660px) {
  .site-header {
    width: min(100% - 24px, 420px);
    gap: 12px;
  }

  .nav-pill {
    width: 100%;
    min-height: 48px;
    overflow-x: auto;
    justify-content: start;
  }

  .nav-pill a {
    padding: 0 12px;
    font-size: 13px;
  }

  .button {
    min-height: 42px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-home {
    margin-top: -164px;
    padding: 220px 18px 84px;
  }

  .hero h1 {
    font-size: 4.1rem;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 16px;
  }

  .bridge-glow {
    left: 4%;
    right: 4%;
    top: 50%;
  }

  .bridge-animation::after {
    left: 8%;
    right: 8%;
    top: 50%;
  }

  .bridge-mist {
    top: 55%;
  }

  .hero-note {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .section,
  .about-hero,
  .blog-hero,
  .blog-article,
  .community-hero,
  .mail-hero,
  .policy-hero,
  .company-footer {
    width: min(100% - 32px, 420px);
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .split-section h2,
  .founder-strip h2,
  .closing-cta h2,
  .blog-closing h2,
  .policy-contact h2 {
    font-size: 2.4rem;
  }

  .lead,
  .split-copy p,
  .founder-strip p,
  .about-copy p,
  .blog-hero p,
  .blog-closing p,
  .community-copy p,
  .policy-hero p,
  .principle-list p,
  .capability p {
    font-size: 16px;
  }

  .feature-grid,
  .capability-band,
  .principle-list,
  .policy-grid,
  .community-update-grid,
  .mail-feature-row {
    grid-template-columns: 1fr;
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .idea-tuning {
    gap: 24px;
    padding: 22px;
  }

  .idea-tuning-pillars {
    grid-template-columns: 1fr;
  }

  .idea-tuning-pillars article {
    min-height: 0;
  }

  .idea-tuning-icon {
    margin-bottom: 16px;
  }

  .workflow-step,
  .workflow-step-final {
    grid-column: auto;
    min-height: 0;
    padding: 22px;
    border-right: 0;
  }

  .workflow-step:not(:last-child)::after {
    display: none;
  }

  .workflow-step:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .workflow-icon {
    margin: 18px 0 22px;
  }

  .workflow-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .feature-card,
  .capability,
  .principle-list article,
  .policy-card {
    min-height: 0;
    padding: 22px;
  }

  .about-copy h1 {
    font-size: 3.2rem;
  }

  .blog-hero {
    margin-top: 24px;
    padding: 46px 0 42px;
  }

  .blog-hero h1 {
    font-size: 2.7rem;
  }

  .community-hero {
    margin-top: 24px;
    padding: 42px 0 34px;
  }

  .community-copy h1 {
    font-size: 2.85rem;
  }

  .community-frame-shell {
    min-height: 620px;
  }

  .community-signup-frame {
    height: 620px;
  }

  .blog-article {
    padding-top: 54px;
  }

  .blog-article p {
    font-size: 17px;
    line-height: 1.75;
  }

  .article-lead {
    font-size: 1.28rem;
  }

  .policy-hero h1 {
    font-size: 3.2rem;
  }

  .mail-hero {
    margin-top: 24px;
    padding: 32px 0 28px;
  }

  .mail-start-content,
  .mail-form-panel {
    padding: 24px;
  }

  .mail-start-content {
    min-height: 430px;
    gap: 32px;
  }

  .mail-start-heading,
  .mail-step-list,
  .mail-static-form {
    grid-template-columns: 1fr;
  }

  .mail-start-heading h1 {
    font-size: 2.4rem;
  }

  .mail-step {
    min-height: 92px;
  }

  .mail-provider-row {
    grid-template-columns: 1fr;
  }

  .about-image {
    aspect-ratio: 4 / 3;
  }
}
