/* DLM — dontletme.app
   Brand-aligned with the iOS app: coral hero, cream/peach panels, ink type,
   mint accent. Bold rounded display (Bricolage Grotesque) + rounded body
   (Manrope). No JS, no build step.
*/

:root {
  --coral: #F26A4F;
  --coral-deep: #C8421F;
  --coral-soft: #F8B6A5;
  --peach: #FBE5D6;
  --cream: #FFF5EB;
  --ink: #1A1410;
  --ink-soft: #4A3F36;
  --muted: #8B7D6F;
  --hair: #E8DBCD;
  --mint: #3FBF8F;
  --mint-soft: #C8EAD9;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 24px 60px -28px rgba(26, 20, 16, 0.18), 0 2px 8px -2px rgba(26, 20, 16, 0.06);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------- */
/* Header */
/* --------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 40px);
  background: rgba(255, 245, 235, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--ink); }

.brand-logo {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.brand-footer .brand-logo {
  width: 32px;
  height: 32px;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 3vw, 28px);
  font-size: 14.5px;
  font-weight: 600;
}
.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}
.site-nav a:hover { color: var(--coral-deep); }

@media (max-width: 540px) {
  .site-nav a:nth-child(3) { display: none; }
}

/* --------------------------------------------------------------------- */
/* Hero */
/* --------------------------------------------------------------------- */

.hero {
  background: var(--coral);
  color: white;
  padding: clamp(48px, 9vw, 96px) clamp(20px, 5vw, 40px) clamp(72px, 12vw, 140px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-inner {
  max-width: 620px;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 16px;
}

.eyebrow-dark {
  color: var(--coral-deep);
}
.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  color: white;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  max-width: 540px;
}
@media (max-width: 900px) {
  .hero-sub { margin-left: auto; margin-right: auto; }
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero-cta { justify-content: center; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 26px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease;
}

.btn-primary {
  background: white;
  color: var(--coral-deep);
}
.btn-primary:hover {
  background: var(--cream);
  color: var(--coral-deep);
  transform: translateY(-1px);
}

.hero-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Hero art — simple SVG-style phone mock */
.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mock {
  width: clamp(220px, 32vw, 320px);
  aspect-ratio: 9/19;
  background: var(--ink);
  border-radius: 38px;
  padding: 14px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.4);
  transform: rotate(-3deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 22px;
  color: var(--ink);
  position: relative;
}

.phone-pill {
  position: absolute;
  top: 22px;
  background: var(--coral);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 999px;
}

.phone-lock {
  width: 110px;
  height: 110px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 18px;
  box-shadow: 0 16px 40px -12px rgba(242, 106, 79, 0.6);
}

.phone-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.phone-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}
.phone-hold {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--coral-deep);
}

/* --------------------------------------------------------------------- */
/* Layout containers */
/* --------------------------------------------------------------------- */

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}
.container-narrow {
  max-width: 720px;
}

section {
  padding: clamp(64px, 10vw, 120px) 0;
}

h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 5.6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: var(--ink);
}

h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--ink);
}

p.lede {
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 620px;
}

p.lede-light {
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------- */
/* Problem */
/* --------------------------------------------------------------------- */

.problem {
  background: var(--cream);
  border-bottom: 1px solid var(--hair);
}

.problem h2 {
  max-width: 760px;
}

/* --------------------------------------------------------------------- */
/* How it works */
/* --------------------------------------------------------------------- */

.how {
  background: var(--peach);
  border-bottom: 1px solid var(--hair);
}

.steps {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  counter-reset: none;
}
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  background: white;
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-card);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.5;
}

/* --------------------------------------------------------------------- */
/* Contract */
/* --------------------------------------------------------------------- */

.contract {
  background: var(--ink);
  color: white;
  text-align: center;
}

.contract h2 {
  color: white;
}

/* --------------------------------------------------------------------- */
/* Pricing */
/* --------------------------------------------------------------------- */

.pricing {
  background: var(--cream);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: 40px;
}
@media (max-width: 820px) {
  .plans { grid-template-columns: 1fr; }
}

.plan {
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  box-shadow: var(--shadow-card);
}

.plan-feature {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--coral);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: 999px;
}

.plan-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: inherit;
  opacity: 0.8;
}

.plan-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 14px;
}
.plan-feature .plan-price,
.plan-feature .plan-name { color: white; }

.plan-currency {
  font-size: 24px;
  vertical-align: top;
  position: relative;
  top: 6px;
  opacity: 0.75;
}
.plan-period {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  margin-left: 4px;
  opacity: 0.6;
}

.plan-blurb {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.plan-feature .plan-blurb {
  color: rgba(255, 255, 255, 0.7);
}

.plan-free {
  background: var(--mint-soft);
  border-color: var(--mint-soft);
}
.plan-free .plan-name { color: rgba(26, 20, 16, 0.7); }
.plan-free .plan-price { color: var(--ink); }
.plan-free .plan-blurb { color: var(--ink-soft); }

.pricing-foot {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
  font-size: 13px;
}

/* --------------------------------------------------------------------- */
/* FAQ */
/* --------------------------------------------------------------------- */

.faq {
  background: var(--peach);
}

.faq h2 { margin-bottom: 32px; }

.faq details {
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color 120ms ease;
}
.faq details:hover { border-color: var(--coral-soft); }
.faq details[open] { border-color: var(--coral); }

.faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: var(--coral-deep);
}
.faq details[open] summary::after { content: "\2013"; }

.faq details p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------- */
/* CTA */
/* --------------------------------------------------------------------- */

.cta {
  background: var(--cream);
  text-align: center;
}

/* --------------------------------------------------------------------- */
/* Footer */
/* --------------------------------------------------------------------- */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
}

.brand-footer .brand-word { color: white; }

.footer-tag {
  font-family: var(--font-display);
  font-size: 13px;
  margin: 6px 0 0;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
}
.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer-nav a:hover { color: white; text-decoration: underline; }

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  text-align: right;
}
@media (max-width: 720px) {
  .footer-copy { text-align: center; }
}

/* --------------------------------------------------------------------- */
/* Legal pages */
/* --------------------------------------------------------------------- */

.legal {
  background: var(--cream);
  padding: clamp(48px, 8vw, 88px) clamp(20px, 5vw, 40px);
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal h1 {
  color: var(--ink);
  font-size: clamp(30px, 4.5vw, 44px);
  margin-bottom: 12px;
}

.legal .legal-meta {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.legal h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  letter-spacing: -0.015em;
}

.legal h3 {
  font-size: 17px;
  margin: 24px 0 8px;
}

.legal p,
.legal li {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.legal p { margin: 0 0 14px; }

.legal ul,
.legal ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal li { margin-bottom: 6px; }

.legal hr {
  border: none;
  border-top: 1px solid var(--hair);
  margin: 32px 0;
}

.legal strong { color: var(--ink); font-weight: 700; }

/* --------------------------------------------------------------------- */
/* Help center                                                            */
/* --------------------------------------------------------------------- */

.help-hero {
  background: var(--coral);
  color: white;
  padding: clamp(56px, 9vw, 96px) clamp(20px, 5vw, 40px) clamp(32px, 5vw, 48px);
  text-align: center;
}
.help-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: white;
  margin: 12px 0 14px;
}
.help-hero .lede {
  color: rgba(255, 255, 255, 0.9);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.help-categories {
  background: var(--cream);
  padding: clamp(48px, 7vw, 88px) 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  margin-top: 32px;
}
@media (max-width: 720px) {
  .cat-grid { grid-template-columns: 1fr; }
}

.cat-card {
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-card);
}
.cat-card h3 {
  font-size: 18px;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.cat-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cat-card li {
  margin-bottom: 8px;
}
.cat-card a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background 120ms ease, color 120ms ease;
}
.cat-card a:hover {
  background: var(--peach);
  color: var(--coral-deep);
}

.help-cta {
  background: var(--peach);
  text-align: center;
  padding: clamp(40px, 6vw, 64px) 0;
}
.help-cta h2 { font-size: clamp(24px, 3.5vw, 32px); margin-bottom: 10px; }
.help-cta .lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Article page                                                           */
.article {
  background: var(--cream);
  padding: clamp(40px, 6vw, 64px) clamp(20px, 5vw, 40px) clamp(48px, 7vw, 80px);
}

.article-inner {
  max-width: 760px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13.5px;
  margin: 0 0 22px;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--coral-deep);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep {
  margin: 0 6px;
  color: var(--muted);
}

.article h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 12px;
}

.article-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 28px;
  letter-spacing: 0.02em;
}

.article-body h2 {
  font-size: 22px;
  margin: 36px 0 12px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.article-body h3 {
  font-size: 17px;
  margin: 24px 0 8px;
  color: var(--ink);
}
.article-body p,
.article-body li {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.article-body p { margin: 0 0 14px; }
.article-body ul,
.article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body code {
  background: var(--peach);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 13.5px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  color: var(--ink);
}
.article-body blockquote {
  margin: 18px 0;
  padding: 14px 20px;
  border-left: 3px solid var(--coral);
  background: white;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  font-style: italic;
}
.article-body a { color: var(--coral-deep); }

.article-helpful {
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin: 40px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.article-helpful p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.article-helpful a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: white;
  background: var(--ink);
  padding: 10px 16px;
  border-radius: 12px;
}
.article-helpful a:hover { background: var(--coral-deep); }

.related-block {
  border-top: 1px solid var(--hair);
  padding-top: 28px;
}
.related-block h2 {
  font-size: 18px;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .related-list { grid-template-columns: 1fr; }
}
.related-list a {
  display: block;
  background: white;
  border: 1px solid var(--hair);
  border-radius: 14px;
  padding: 14px 18px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: border-color 120ms ease, color 120ms ease;
}
.related-list a:hover {
  border-color: var(--coral);
  color: var(--coral-deep);
}

/* --------------------------------------------------------------------- */
/* Support page */
/* --------------------------------------------------------------------- */

.support {
  background: var(--cream);
}

.support-hero {
  padding: clamp(56px, 9vw, 96px) 0 clamp(24px, 4vw, 36px);
}

.support h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  color: var(--ink);
}

.support-form-section {
  padding: 0 0 clamp(64px, 10vw, 96px);
}

.support-form {
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-card);
}

.support-portal-card {
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.support-portal-card h2 {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}
.support-portal-card > p {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 auto 24px;
  max-width: 420px;
}
.btn-portal {
  display: inline-block;
  background: var(--coral);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 120ms ease, transform 120ms ease;
}
.btn-portal:hover {
  background: var(--coral-deep);
  color: white;
  transform: translateY(-1px);
}

.field {
  margin-bottom: 22px;
}
.field:last-of-type { margin-bottom: 28px; }

.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.field .req {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--coral-deep);
  text-transform: uppercase;
  margin-left: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--hair);
  border-radius: 14px;
  padding: 14px 16px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 120ms ease, background 120ms ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  opacity: 0.85;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: white;
}
.field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-body);
  line-height: 1.5;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238B7D6F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 42px;
}
.field .help {
  margin: 8px 2px 0;
  font-size: 12.5px;
  color: var(--muted);
}

.support-submit {
  width: 100%;
  background: var(--ink);
  color: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 26px;
  border-radius: 14px;
  transition: transform 120ms ease, background 120ms ease;
}
.support-submit:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.support-fallback {
  text-align: center;
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.support-copy {
  background: none;
  border: 1.5px dashed var(--hair);
  border-radius: 10px;
  padding: 4px 10px;
  margin-left: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--coral-deep);
  cursor: pointer;
  transition: border-color 120ms ease, background 120ms ease;
}
.support-copy:hover {
  border-color: var(--coral);
  background: var(--cream);
}

.form-status {
  margin: 14px 2px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  min-height: 1.4em;
}

.support-shortcuts {
  background: var(--peach);
  padding: clamp(48px, 7vw, 72px) 0;
  border-top: 1px solid var(--hair);
}
.support-shortcuts h2 {
  font-size: clamp(28px, 4vw, 42px);
}
.shortcut-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.shortcut-list li {
  background: white;
  border: 1px solid var(--hair);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  padding: 18px 22px;
  transition: border-color 120ms ease;
}
.shortcut-list li:hover {
  border-color: var(--coral-soft);
}
.shortcut-list a {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.shortcut-list a:hover { color: var(--coral-deep); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
