:root {
  --ocean-900: #00354d;
  --ocean-700: #005d80;
  --ocean-500: #0f8db2;
  --surf: #47d4ff;
  --sand: #ffe0a9;
  --sun: #ffb347;
  --coral: #ff5c48;
  --foam: #f8fdff;
  --ink: #0a2230;
  --muted: #4b6777;
  --card: #ffffff;
  --border: #cde8f3;
  --success: #1b8f56;
  --error: #c23333;
  --warning: #9f6800;
  --shadow: 0 16px 38px rgba(0, 63, 88, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Trebuchet MS", "Avenir Next Condensed", "Franklin Gothic Medium", "Gill Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(71, 212, 255, 0.26), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(255, 179, 71, 0.32), transparent 40%),
    linear-gradient(180deg, #eff9ff 0%, #fef7ea 70%, #f7fbff 100%);
  min-height: 100vh;
}

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

a:hover {
  color: var(--coral);
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  background: linear-gradient(90deg, rgba(0, 53, 77, 0.86), rgba(0, 107, 143, 0.84));
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: conic-gradient(from 100deg, var(--sun), var(--coral), var(--surf));
  font-size: 0.84rem;
  font-weight: 800;
  color: #042538;
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a,
.text-btn {
  color: #ecfbff;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}

.inline-form {
  display: inline;
  margin: 0;
}

.text-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.hero {
  padding: 4.6rem 0 3.4rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -90px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.36), rgba(255, 92, 72, 0.06) 70%, transparent 72%);
  pointer-events: none;
}

.hero-home {
  background:
    linear-gradient(140deg, rgba(0, 93, 128, 0.93), rgba(0, 54, 80, 0.87)),
    linear-gradient(180deg, rgba(71, 212, 255, 0.15), rgba(255, 224, 169, 0.18));
  color: #f2fdff;
}

.hero-business {
  background:
    linear-gradient(130deg, rgba(0, 53, 77, 0.9), rgba(9, 128, 163, 0.82)),
    linear-gradient(180deg, rgba(255, 179, 71, 0.14), rgba(255, 92, 72, 0.08));
  color: #f2fdff;
}

.hero-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.kicker {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 800;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.05rem, 4.8vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0.45rem 0 1rem;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
  color: #e6f7ff;
}

.hero-list {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.hero-list li {
  line-height: 1.3;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.signup-card,
.pricing-card {
  color: var(--ink);
  animation: float-up 520ms ease-out;
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 3.3rem 0;
}

.beach-band {
  background:
    linear-gradient(180deg, rgba(255, 224, 169, 0.34), rgba(247, 252, 255, 0.95)),
    repeating-linear-gradient(-35deg, rgba(9, 128, 163, 0.06), rgba(9, 128, 163, 0.06) 12px, transparent 12px, transparent 24px);
}

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

.feature-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 10px 22px rgba(6, 75, 107, 0.09);
}

.split-callout {
  border: 2px solid rgba(15, 141, 178, 0.18);
  border-radius: 18px;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(255, 235, 198, 0.45));
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.price {
  font-size: 2.8rem;
  font-weight: 900;
  margin: 0;
  color: var(--ocean-900);
}

.price span {
  font-size: 1rem;
  font-weight: 700;
}

.stack-form {
  display: grid;
  gap: 0.7rem;
}

label {
  font-size: 0.92rem;
  font-weight: 700;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 1rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #b8dcea;
  border-radius: 10px;
  padding: 0.68rem 0.76rem;
  background: #ffffff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(15, 141, 178, 0.3);
  border-color: var(--ocean-500);
}

.checkbox {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  align-items: start;
  gap: 0.6rem;
  line-height: 1.35;
  font-weight: 500;
}

.checkbox input {
  margin-top: 0.2rem;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  color: #042637;
  background: linear-gradient(130deg, var(--sun), #ffd892);
  box-shadow: 0 8px 20px rgba(255, 179, 71, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(130deg, #ffc35c, #ffe2b4);
}

.btn-secondary {
  color: #f5fcff;
  background: linear-gradient(130deg, var(--ocean-700), var(--ocean-500));
}

.btn-secondary:hover {
  color: #fff;
}

.btn-ghost {
  color: var(--ocean-900);
  background: rgba(15, 141, 178, 0.1);
}

.alert {
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  font-size: 0.93rem;
}

.alert.success {
  background: rgba(27, 143, 86, 0.12);
  color: var(--success);
  border: 1px solid rgba(27, 143, 86, 0.28);
}

.alert.error {
  background: rgba(194, 51, 51, 0.1);
  color: var(--error);
  border: 1px solid rgba(194, 51, 51, 0.25);
}

.alert.warning {
  background: rgba(159, 104, 0, 0.11);
  color: var(--warning);
  border: 1px solid rgba(159, 104, 0, 0.24);
}

.small {
  font-size: 0.84rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.timeline div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.timeline span {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--ocean-500), var(--surf));
  color: #fff;
  font-weight: 900;
  margin-bottom: 0.4rem;
}

.dashboard-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1rem 0;
}

.table-card {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.68rem 0.55rem;
  border-bottom: 1px solid #e4eff4;
  vertical-align: top;
}

th {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #446273;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.pill.submitted {
  background: rgba(15, 141, 178, 0.12);
  color: var(--ocean-700);
}

.pill.selected {
  background: rgba(27, 143, 86, 0.12);
  color: var(--success);
}

.admin-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.filters {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
}

.submission-card {
  border: 1px solid #dcecf4;
  border-radius: 14px;
  padding: 0.9rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.submission-card.scheduled {
  border-color: rgba(27, 143, 86, 0.3);
  background: rgba(230, 250, 240, 0.6);
}

.thumb-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.thumb-row a {
  font-size: 0.78rem;
  padding: 0.3rem 0.45rem;
  border: 1px solid #c7deea;
  border-radius: 999px;
}

.metric {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0;
  color: var(--ocean-900);
}

.legal h2 {
  margin-top: 1.4rem;
}

.faq-item {
  border-bottom: 1px solid #d5e8f2;
  padding: 0.7rem 0;
}

.row-actions {
  margin-top: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.site-footer {
  background: linear-gradient(130deg, #062f44, #015e81);
  color: #d9f6ff;
  padding: 2rem 0;
}

.site-footer a {
  color: #f9f5c9;
  display: block;
  margin-bottom: 0.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 1000px) {
  .hero-grid,
  .admin-columns,
  .section-grid,
  .timeline,
  .dashboard-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .split-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero {
    padding: 3.5rem 0 2.6rem;
  }

  h1 {
    font-size: clamp(1.75rem, 11vw, 2.35rem);
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
