/* Florida Property Ops — premium landing */

:root {
  --navy-950: #060d18;
  --navy-900: #0a1628;
  --navy-800: #0f2138;
  --navy-700: #152a45;
  --navy-600: #1e3554;
  --gold-400: #d4b978;
  --gold-500: #c9a962;
  --gold-600: #b8944a;
  --cream: #f4efe6;
  --cream-muted: #b8b0a2;
  --white: #ffffff;
  --line: rgba(201, 169, 98, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 16px 48px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius-sm: 12px;
  --header-h: 76px;
  --green: #6ecf8f;
  --amber: #e8b86d;
  --ring-size: 326;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", system-ui, -apple-system, sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--cream);
  background: var(--navy-950);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold-500);
  color: var(--navy-950);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(6, 13, 24, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 185, 120, 0.35), transparent 55%),
    linear-gradient(145deg, var(--navy-700), var(--navy-900));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
}

.logo-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.92rem;
  color: var(--cream-muted);
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-400);
}

.nav-cta {
  padding: 0.62rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-400) !important;
  background: rgba(201, 169, 98, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--gold-400);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(201, 169, 98, 0.12), transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(30, 53, 84, 0.8), transparent 45%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.hero-copy h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: var(--cream-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--navy-950);
  box-shadow: 0 12px 32px rgba(201, 169, 98, 0.22);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.03);
}

.btn-full {
  width: 100%;
}

.hero-trust {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.hero-trust li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  color: var(--cream-muted);
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 12px rgba(201, 169, 98, 0.5);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.panel-card {
  width: min(100%, 380px);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(21, 42, 69, 0.95), rgba(10, 22, 40, 0.92));
  box-shadow: var(--shadow);
}

.panel-label {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.panel-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
}

.panel-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}

.panel-list span {
  color: var(--cream-muted);
}

.panel-list strong {
  color: var(--cream);
  font-weight: 500;
}

.panel-foot {
  margin: 0;
  font-size: 0.82rem;
  color: var(--gold-400);
}

/* Health score dashboard */

.health-dashboard {
  width: min(100%, 420px);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(21, 42, 69, 0.96), rgba(10, 22, 40, 0.94));
  box-shadow: var(--shadow);
}

.health-dashboard-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.health-property {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  white-space: nowrap;
}

.status-pill-good {
  color: var(--green);
  border-color: rgba(110, 207, 143, 0.35);
  background: rgba(110, 207, 143, 0.08);
}

.status-pill-neutral {
  color: var(--amber);
  border-color: rgba(232, 184, 109, 0.35);
  background: rgba(232, 184, 109, 0.08);
}

.health-score-ring-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.health-score-ring {
  position: relative;
  width: 140px;
  height: 140px;
}

.health-score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg,
.ring-fill {
  fill: none;
  stroke-width: 8;
}

.ring-bg {
  stroke: rgba(255, 255, 255, 0.08);
}

.ring-fill {
  stroke: var(--gold-500);
  stroke-linecap: round;
  stroke-dasharray: 326;
  stroke-dashoffset: 326;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  filter: drop-shadow(0 0 8px rgba(201, 169, 98, 0.35));
}

.health-score-ring.is-animated .ring-fill {
  stroke-dashoffset: calc(326 - (326 * var(--score, 0) / 100));
}

.health-score-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1;
  color: var(--white);
}

.score-denom {
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-top: 0.15rem;
}

.health-metrics {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.health-metrics li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.35rem 0.75rem;
  align-items: center;
  font-size: 0.82rem;
}

.health-metrics li > span:first-child {
  grid-column: 1;
  color: var(--cream-muted);
}

.health-metrics li strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-weight: 500;
  color: var(--cream);
}

.metric-bar {
  grid-column: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.metric-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.health-metrics.is-animated .metric-bar span {
  width: var(--w);
}

/* Trust strip */

.trust-strip {
  padding: 1.25rem 0;
  border-block: 1px solid var(--line-soft);
  background: rgba(10, 22, 40, 0.55);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--cream-muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold-400);
}

.trust-item:hover {
  color: var(--cream);
  transform: translateY(-2px);
}

/* Owner dashboard mockup */

.dashboard-section {
  background: linear-gradient(180deg, rgba(15, 33, 56, 0.4), transparent);
}

.section-head-center {
  text-align: center;
  margin-inline: auto;
}

.owner-dashboard {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: rgba(8, 16, 28, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dash-sidebar {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--line-soft);
  background: rgba(6, 13, 24, 0.65);
}

.dash-brand {
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.dash-nav {
  display: grid;
  gap: 0.35rem;
}

.dash-nav-item {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--cream-muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.dash-nav-item.active {
  background: rgba(201, 169, 98, 0.12);
  color: var(--white);
}

.dash-main {
  padding: 1.5rem;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}

.dash-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.dash-title {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--white);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.dash-card {
  padding: 1.1rem 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  background: rgba(15, 33, 56, 0.55);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.dash-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.dash-card-feature {
  grid-column: span 2;
}

.dash-card-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.dash-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
}

.dash-meta {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  color: var(--gold-400);
}

.dash-stat {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.1;
  color: var(--white);
}

.dash-stat span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--cream-muted);
  margin-left: 0.15rem;
}

.dash-copy {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--cream-muted);
}

.dash-copy-good {
  color: var(--green);
}

.photo-thumbs {
  display: flex;
  gap: 0.4rem;
  margin: 0.35rem 0 0.5rem;
}

.photo-thumbs span {
  width: 42px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--line-soft);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(30, 53, 84, 0.8));
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Timeline */

.timeline-section {
  background: linear-gradient(180deg, transparent, rgba(15, 33, 56, 0.35), transparent);
}

.timeline-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.ops-timeline {
  list-style: none;
  position: relative;
  padding-left: 0.5rem;
}

.ops-timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold-500), rgba(201, 169, 98, 0.15));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.25rem;
  padding: 0 0 1.5rem 1.5rem;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.timeline-item.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--gold-500);
  background: var(--navy-950);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.12);
}

.timeline-item-alert::before {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(232, 184, 109, 0.15);
}

.timeline-item time {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-400);
  padding-top: 0.15rem;
}

.timeline-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.timeline-body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--cream-muted);
}

/* GPS section */

.gps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gps-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(10, 22, 40, 0.72);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.gps-card:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}

.gps-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}

.gps-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--cream-muted);
}

/* Storm mode */

.storm-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.storm-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--white);
}

.storm-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin: 0 0 2rem;
}

.storm-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--cream-muted);
}

.storm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

.storm-status-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 98, 0.28);
  background: linear-gradient(160deg, rgba(21, 42, 69, 0.95), rgba(6, 13, 24, 0.95));
  box-shadow: var(--shadow);
}

.storm-status-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.storm-mode-badge {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
}

.storm-checklist {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.storm-checklist li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.92rem;
}

.storm-checklist li span {
  color: var(--cream-muted);
}

.storm-checklist li strong {
  color: var(--cream);
  font-weight: 500;
}

.storm-checklist li.done strong {
  color: var(--green);
}

.storm-foot {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--cream-muted);
}

/* Risk grid */

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.risk-section .problem-card {
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.risk-section .problem-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

/* Building intelligence */

.building-layout .section-head {
  max-width: 46rem;
}

.building-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.building-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(15, 33, 56, 0.7), rgba(10, 22, 40, 0.55));
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.building-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.building-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

.building-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--cream-muted);
}

/* Contact channels */

.contact-welcome {
  margin: 1.25rem auto 0;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gold-400);
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.15rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: rgba(10, 22, 40, 0.72);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-channel:hover,
.contact-channel:focus-visible {
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  background: rgba(15, 33, 56, 0.85);
}

.contact-channel-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(201, 169, 98, 0.08);
  color: var(--gold-400);
}

.contact-channel-icon svg {
  width: 20px;
  height: 20px;
}

.contact-channel-icon-whatsapp,
.contact-channel-icon-telegram,
.contact-channel-icon-wechat,
.contact-channel-icon-viber {
  color: var(--cream);
  border-color: rgba(201, 169, 98, 0.2);
}

.contact-channel-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.contact-channel-value {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--white);
  word-break: break-word;
}

.contact-form-wrap {
  margin-top: 0.5rem;
}

.contact-form-wrap .contact-copy {
  display: none;
}

@media (min-width: 761px) {
  .contact-form-wrap {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .contact-form-wrap .contact-copy {
    display: block;
    padding-top: 1rem;
  }

  .contact-form-wrap .contact-actions {
    flex-direction: column;
    margin: 0;
  }

  .contact-form-wrap .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Contact actions */

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

/* Sections */

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(180deg, rgba(15, 33, 56, 0.35), transparent);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-head h2,
.scope-block h2,
.contact-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--white);
}

.section-lead {
  margin: 0;
  color: var(--cream-muted);
  font-size: 1.05rem;
}

/* Services */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(10, 22, 40, 0.72);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--gold-400);
  background: rgba(201, 169, 98, 0.08);
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--cream-muted);
}

/* Problems */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.problem-card {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(145deg, rgba(15, 33, 56, 0.75), rgba(10, 22, 40, 0.55));
}

.problem-num {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--gold-500);
}

.problem-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--white);
}

.problem-card p {
  margin: 0;
  color: var(--cream-muted);
}

/* Scope */

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.scope-block {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(10, 22, 40, 0.65);
}

.scope-not {
  border-color: rgba(201, 169, 98, 0.28);
  background: linear-gradient(160deg, rgba(21, 42, 69, 0.85), rgba(10, 22, 40, 0.9));
}

.scope-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.scope-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--cream-muted);
}

.scope-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold-500);
}

.scope-list-not li::before {
  background: transparent;
  border: 1px solid rgba(201, 169, 98, 0.55);
}

.scope-note {
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.9rem;
  color: var(--cream-muted);
}

/* Process */

.process-steps {
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: rgba(10, 22, 40, 0.55);
}

.step-index {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-400);
  background: rgba(201, 169, 98, 0.08);
}

.process-step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
}

.process-step p {
  margin: 0;
  color: var(--cream-muted);
}

/* Areas */

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.area-chip {
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(201, 169, 98, 0.06);
  font-size: 0.92rem;
  color: var(--cream);
}

.areas-note {
  margin: 0;
  color: var(--cream-muted);
  font-size: 0.95rem;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-copy p {
  color: var(--cream-muted);
}

.contact-details {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-details a {
  color: var(--gold-400);
  transition: color 0.2s ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--white);
}

.detail-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(21, 42, 69, 0.92), rgba(10, 22, 40, 0.95));
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: var(--cream-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  background: rgba(6, 13, 24, 0.65);
  color: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(184, 176, 162, 0.55);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.form-disclaimer {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--cream-muted);
}

.form-status {
  margin: 0.85rem 0 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: var(--gold-400);
}

/* Footer */

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--line-soft);
  background: var(--navy-950);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand .logo-name {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

.footer-brand p,
.footer-legal,
.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--cream-muted);
}

.footer-legal {
  max-width: 52rem;
  line-height: 1.6;
}

/* Reveal animation */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Responsive */

@media (max-width: 980px) {
  .hero-grid,
  .scope-grid,
  .contact-grid,
  .timeline-layout,
  .storm-layout {
    grid-template-columns: 1fr;
  }

  .owner-dashboard {
    grid-template-columns: 1fr;
  }

  .dash-sidebar {
    display: none;
  }

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

  .dash-card-feature {
    grid-column: span 2;
  }

  .card-grid,
  .gps-grid,
  .building-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-channels {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(6, 13, 24, 0.96);
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
    padding: 0.85rem 1rem !important;
  }

  body.nav-open {
    overflow: hidden;
  }

  .card-grid,
  .problem-grid,
  .gps-grid,
  .building-grid,
  .risk-grid,
  .dash-grid {
    grid-template-columns: 1fr;
  }

  .dash-card-feature {
    grid-column: span 1;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 0.75rem;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-channel {
    padding: 1rem;
  }

  .contact-channel-value {
    font-size: 0.95rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 2rem) 0 2.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    margin-bottom: 1.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 1rem 1.25rem;
  }

  .health-dashboard {
    width: 100%;
  }

  .health-score-ring {
    width: 120px;
    height: 120px;
  }

  .score-num {
    font-size: 2.25rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-left: 1.35rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .storm-copy .btn {
    width: 100%;
  }

  .owner-dashboard {
    border-radius: var(--radius);
  }

  .dash-main {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .timeline-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .service-card:hover,
  .gps-card:hover,
  .dash-card:hover,
  .building-card:hover,
  .trust-item:hover,
  .contact-channel:hover {
    transform: none;
  }

  .ring-fill,
  .metric-bar span {
    transition: none;
  }
}

.field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-500);
}

.legal-page {
  padding: 6rem 0 4rem;
  min-height: 60vh;
}

.legal-content {
  max-width: 720px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--gold-500);
}

.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

.legal-updated {
  font-size: 0.9rem;
  opacity: 0.65;
  margin-bottom: 1.5rem;
}

.thank-you-content .eyebrow {
  margin-bottom: 0.75rem;
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(10, 22, 40, 0.96);
  border-top: 1px solid rgba(201, 169, 98, 0.22);
  gap: 0.75rem;
  backdrop-filter: blur(10px);
}

.mobile-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--gold-500);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-cta-primary {
  background: linear-gradient(135deg, #c9a962, #a8894a);
  color: #0a1628;
  border-color: transparent;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: calc(4.5rem + env(safe-area-inset-bottom));
  }
}
