/* TECHKEE LIMITED — Night-keep stewardship landing */

:root {
  --indigo: #1e1b4b;
  --indigo-deep: #12102e;
  --indigo-mid: #2e2a6a;
  --indigo-soft: #3b367d;
  --peach: #fdba74;
  --peach-hot: #fb923c;
  --peach-soft: #ffedd5;
  --mist: #eef2ff;
  --mist-deep: #e0e7ff;
  --white: #ffffff;
  --ink: #1e1b4b;
  --ink-muted: #4c4780;
  --font-display: "Rubik", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --radius: 14px;
  --shadow-lift: 0 18px 40px rgba(18, 16, 46, 0.18);
  --header-h: 64px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--peach-hot);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--peach);
}

h1,
h2,
h3,
.brand-text,
.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.65rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap.narrow {
  width: min(760px, calc(100% - 2.5rem));
}

.band-mist {
  background: var(--mist);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.section-head.on-dark {
  color: var(--white);
}

.section-head.on-dark p {
  color: rgba(238, 242, 255, 0.82);
}

.section-head p {
  color: var(--ink-muted);
  margin: 0;
}

/* Keep / shield mark — CSS only */
.keep-mark {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 32px;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--peach) 0%, var(--peach-hot) 100%);
  clip-path: polygon(50% 0%, 100% 18%, 100% 62%, 50% 100%, 0% 62%, 0% 18%);
  box-shadow: inset 0 -6px 12px rgba(30, 27, 75, 0.18);
}

.keep-mark::after {
  content: "";
  position: absolute;
  inset: 6px 7px 10px;
  background: var(--indigo);
  clip-path: polygon(50% 0%, 100% 20%, 100% 60%, 50% 100%, 0% 60%, 0% 20%);
}

.keep-mark--sm {
  width: 22px;
  height: 26px;
}

.keep-mark--sm::after {
  inset: 5px 5px 8px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(18, 16, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(253, 186, 116, 0.12);
}

.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
}

.brand:hover {
  color: var(--peach-soft);
}

.brand-text {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.1rem;
}

.nav a {
  color: rgba(238, 242, 255, 0.86);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.nav a:hover {
  color: var(--peach);
}

.nav-cta {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(253, 186, 116, 0.16);
  color: var(--peach) !important;
  border: 1px solid rgba(253, 186, 116, 0.35);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(253, 186, 116, 0.3);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--peach);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--indigo-deep);
  border-bottom: 1px solid rgba(253, 186, 116, 0.12);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: var(--mist);
  text-decoration: none;
  font-weight: 600;
  padding: 0.55rem 0.35rem;
  border-radius: 8px;
}

.mobile-nav a:hover {
  background: rgba(253, 186, 116, 0.1);
  color: var(--peach);
}

@media (min-width: 920px) {
  .nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-peach {
  background: var(--peach);
  color: var(--indigo-deep);
}

.btn-peach:hover {
  background: var(--peach-hot);
  color: var(--indigo-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(238, 242, 255, 0.35);
}

.btn-ghost:hover {
  border-color: var(--peach);
  color: var(--peach);
}

/* Hero — full-bleed indigo night */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: clamp(3rem, 8vh, 5.5rem) 1.25rem;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(253, 186, 116, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(99, 102, 241, 0.25), transparent 50%),
    linear-gradient(165deg, var(--indigo-deep) 0%, var(--indigo) 48%, #25215a 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.peach-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(253, 186, 116, 0.55), rgba(253, 186, 116, 0.05) 60%, transparent 70%);
  filter: blur(2px);
  animation: orb-drift 14s ease-in-out infinite alternate;
}

.peach-orb--a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: -8%;
  right: -5%;
}

.peach-orb--b {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  bottom: 12%;
  left: 8%;
  animation-delay: -4s;
  opacity: 0.7;
}

.peach-orb--c {
  width: min(18vw, 180px);
  height: min(18vw, 180px);
  top: 42%;
  right: 22%;
  animation-delay: -7s;
  opacity: 0.45;
}

.mist-veil {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(238, 242, 255, 0.08), transparent);
}

@keyframes orb-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-18px, 22px) scale(1.06);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  text-align: left;
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--peach);
  letter-spacing: 0.02em;
}

.hero-brand {
  margin: 0 0 1.1rem;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
}

.hero-headline {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: rgba(238, 242, 255, 0.9);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-locale {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(238, 242, 255, 0.65);
}

.hero-locale a {
  color: var(--peach);
}

/* Intro */
.intro {
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.intro h2 {
  color: var(--indigo);
}

.intro p {
  color: var(--ink-muted);
}

.intro em {
  font-style: italic;
  color: var(--indigo);
  font-weight: 600;
}

/* Bento grid — irregular */
.capabilities {
  padding: 0 0 clamp(3.5rem, 8vw, 5rem);
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }

  .bento-tile.span-2 {
    grid-column: span 2;
  }

  .bento-tile.tall {
    grid-row: span 2;
  }

  .bento-tile.wide-row {
    grid-column: span 2;
  }
}

.bento-tile {
  background: var(--white);
  border: 1px solid rgba(30, 27, 75, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
  box-shadow: 0 4px 18px rgba(30, 27, 75, 0.04);
}

.bento-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(253, 186, 116, 0.45);
}

.bento-tile h3 {
  color: var(--indigo);
}

.bento-tile p,
.bento-tile li {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.bento-tile ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.bento-tile.span-2 {
  background:
    linear-gradient(135deg, rgba(253, 186, 116, 0.12), transparent 55%),
    var(--white);
}

.bento-tile.tall {
  background:
    linear-gradient(180deg, var(--indigo) 0%, var(--indigo-mid) 100%);
  color: var(--white);
  border-color: transparent;
}

.bento-tile.tall h3 {
  color: var(--peach);
}

.bento-tile.tall p,
.bento-tile.tall li {
  color: rgba(238, 242, 255, 0.88);
}

/* Keep score meter */
.score-section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(253, 186, 116, 0.12), transparent 50%),
    var(--indigo);
  color: var(--white);
}

.keep-meter {
  background: rgba(18, 16, 46, 0.45);
  border: 1px solid rgba(253, 186, 116, 0.18);
  border-radius: 18px;
  padding: clamp(1.4rem, 3vw, 2rem);
}

.meter-track {
  position: relative;
  height: 28px;
  border-radius: 999px;
  background: rgba(238, 242, 255, 0.1);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.meter-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    #818cf8 0%,
    #818cf8 18%,
    #6366f1 18%,
    #6366f1 42%,
    #fdba74 42%,
    #fdba74 68%,
    #fb923c 68%,
    #fb923c 88%,
    #c7d2fe 88%,
    #c7d2fe 100%
  );
  transition: width 1.4s var(--ease);
  box-shadow: 0 0 24px rgba(253, 186, 116, 0.35);
}

.meter-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.meter-markers span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(18, 16, 46, 0.35);
  transform: translateX(-50%);
}

.meter-legend {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 720px) {
  .meter-legend {
    grid-template-columns: repeat(2, 1fr);
  }
}

.meter-legend li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(238, 242, 255, 0.88);
}

.meter-legend strong {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.swatch-observe {
  background: #818cf8;
}
.swatch-harden {
  background: #6366f1;
}
.swatch-recover {
  background: #fdba74;
}
.swatch-improve {
  background: #fb923c;
}
.swatch-reserve {
  background: #c7d2fe;
}

.meter-note {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(238, 242, 255, 0.7);
}

/* Stewardship cycle */
.cycle-section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.cycle-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .cycle-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.cycle-diagram {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
}

.cycle-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 2px dashed rgba(30, 27, 75, 0.2);
  background:
    conic-gradient(
      from -90deg,
      rgba(253, 186, 116, 0.2) 0deg 90deg,
      rgba(99, 102, 241, 0.12) 90deg 180deg,
      rgba(253, 186, 116, 0.15) 180deg 270deg,
      rgba(99, 102, 241, 0.1) 270deg 360deg
    );
  transition: transform 0.7s var(--ease);
}

.cycle-diagram.is-rotating .cycle-ring {
  transform: rotate(90deg);
}

.cycle-hub {
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  background: var(--indigo);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 30px rgba(30, 27, 75, 0.25);
}

.cycle-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(-1 * var(--angle)));
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  color: var(--ink-muted);
  transition: color 0.3s ease;
}

.cycle-node .node-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mist-deep);
  border: 3px solid var(--indigo-soft);
  transition: transform 0.35s var(--ease), background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.cycle-node .node-label {
  font-size: 0.88rem;
  font-weight: 700;
}

.cycle-node:hover .node-dot,
.cycle-node.is-active .node-dot {
  background: var(--peach);
  border-color: var(--peach-hot);
  transform: scale(1.2);
  box-shadow: 0 0 0 8px rgba(253, 186, 116, 0.25);
}

.cycle-node.is-active {
  color: var(--indigo);
}

.cycle-detail {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(30, 27, 75, 0.08);
  min-height: 220px;
  box-shadow: 0 10px 28px rgba(30, 27, 75, 0.06);
  animation: panel-in 0.35s var(--ease);
}

.cycle-detail h3 {
  color: var(--indigo);
}

.cycle-detail p {
  color: var(--ink-muted);
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Threat tag cloud */
.threats-section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: var(--indigo-deep);
  color: var(--white);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.7rem;
  max-width: 900px;
  margin-inline: auto;
}

.tag {
  border: 1px solid rgba(253, 186, 116, 0.28);
  background: rgba(46, 42, 106, 0.65);
  color: var(--mist);
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.tag:hover,
.tag.is-active {
  background: var(--peach);
  color: var(--indigo-deep);
  border-color: var(--peach);
  transform: translateY(-3px) scale(1.03);
}

.tag-sm {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
}
.tag-md {
  font-size: 0.95rem;
}
.tag-lg {
  font-size: 1.08rem;
  padding: 0.7rem 1.2rem;
}

.tag-hint {
  text-align: center;
  margin: 1.5rem auto 0;
  max-width: 560px;
  color: rgba(238, 242, 255, 0.72);
  font-size: 0.95rem;
}

/* Case ledgers table */
.ledgers-section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 27, 75, 0.1);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(30, 27, 75, 0.05);
}

.ledger-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.ledger-table th,
.ledger-table td {
  text-align: left;
  padding: 1rem 1.15rem;
  vertical-align: top;
}

.ledger-table thead {
  background: var(--indigo);
  color: var(--white);
}

.ledger-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.ledger-table tbody tr {
  border-top: 1px solid rgba(30, 27, 75, 0.08);
  transition: background 0.2s ease;
}

.ledger-table tbody tr:hover {
  background: rgba(253, 186, 116, 0.1);
}

.ledger-table td {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.ledger-table td:first-child {
  white-space: nowrap;
  color: var(--indigo);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.88rem;
}

/* FAQ segmented control */
.faq-section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background:
    linear-gradient(180deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: var(--white);
}

.faq-control {
  display: grid;
  gap: 1.25rem;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.4rem;
  background: rgba(18, 16, 46, 0.55);
  border-radius: 14px;
  border: 1px solid rgba(253, 186, 116, 0.2);
}

.seg {
  flex: 1 1 auto;
  min-width: max(120px, 18%);
  border: none;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  background: transparent;
  color: rgba(238, 242, 255, 0.8);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.seg:hover {
  color: var(--peach);
}

.seg.is-active {
  background: var(--peach);
  color: var(--indigo-deep);
}

.faq-panel {
  background: rgba(238, 242, 255, 0.06);
  border: 1px solid rgba(253, 186, 116, 0.18);
  border-radius: 16px;
  padding: 1.6rem 1.7rem;
  min-height: 180px;
  animation: panel-in 0.35s var(--ease);
}

.faq-panel h3 {
  color: var(--peach);
  margin-bottom: 0.75rem;
}

.faq-panel p {
  color: rgba(238, 242, 255, 0.88);
  margin: 0;
}

/* Contact vault */
.contact-section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: var(--mist);
}

.contact-section .section-head a {
  color: var(--indigo);
  font-weight: 700;
}

.vault {
  display: grid;
  gap: 1.25rem;
  background: var(--indigo-deep);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow:
    inset 0 1px 0 rgba(253, 186, 116, 0.12),
    0 24px 50px rgba(18, 16, 46, 0.28);
  border: 1px solid rgba(253, 186, 116, 0.15);
}

@media (min-width: 840px) {
  .vault {
    grid-template-columns: 0.9fr 1.3fr;
    gap: 1.75rem;
  }
}

.vault-meta {
  color: var(--mist);
  padding: 0.5rem 0.35rem;
}

.vault-meta h3 {
  margin-top: 0.85rem;
  color: var(--white);
}

.vault-address {
  color: rgba(238, 242, 255, 0.75);
}

.vault-meta a {
  color: var(--peach);
  font-weight: 700;
}

.vault-note {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: rgba(238, 242, 255, 0.72);
}

.vault-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  background: rgba(18, 16, 46, 0.65);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(238, 242, 255, 0.08);
}

@media (min-width: 560px) {
  .vault-form {
    grid-template-columns: 1fr 1fr;
  }

  .field-full {
    grid-column: 1 / -1;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--peach);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(238, 242, 255, 0.15);
  background: rgba(30, 27, 75, 0.7);
  color: var(--white);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(238, 242, 255, 0.4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(253, 186, 116, 0.2);
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--peach) 50%),
    linear-gradient(135deg, var(--peach) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.form-status {
  margin: 0;
  font-size: 0.92rem;
  color: var(--peach);
}

/* Footer */
.site-footer {
  background: var(--indigo-deep);
  color: rgba(238, 242, 255, 0.75);
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(253, 186, 116, 0.12);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-contact a {
  color: var(--peach);
  font-weight: 700;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  opacity: 0.7;
  border-top: 1px solid rgba(238, 242, 255, 0.08);
  padding-top: 1.25rem;
}

@media (min-width: 720px) {
  .footer-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .footer-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 699px) {
  .cycle-node {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-120px) rotate(calc(-1 * var(--angle)));
    width: 84px;
  }

  .cycle-node .node-label {
    font-size: 0.78rem;
  }
}
