@font-face {
    font-family: KavyaLight;
    src: local('SF Pro Display Thin'), local('.SFNSDisplay-Thin'), local('HelveticaNeue-Thin');
}

@font-face {
    font-family: KavyaRegular;
    src: local('SF Pro Text Regular'), local('.SFNSText-Regular'), local('HelveticaNeue');
}

@font-face {
    font-family: KavyaBold;
    src: local('SF Pro Display Bold'), local('.SFNSDisplay-Bold'), local('HelveticaNeue-Bold');
}

body, p {
    font-family: KavyaRegular, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 18px;
    line-height: 1.6;
}

a {
   color: black;
}

a:hover {
   color: rgba(191,0,0,0.75);
}

section {
    padding-top: 90px;
    padding-bottom: 90px;
    background: white;
    background: linear-gradient(white, rgba(240, 240, 240, 1));
}

section > div {
    font-family: KavyaRegular, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    width: 90%;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2 {
    line-height: 1.6;
    text-align: center;
}

h1 {
    margin-top: -30px;
    letter-spacing: -2px;
    font-family: KavyaBold, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 72px;
}

h2 {
    letter-spacing: -1px;
    line-height: 1.6;
    font-family: KavyaLight, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 36px;
    margin-bottom: 50px;
}

h3, #priceTable th {
    line-height: 1.6;
    letter-spacing: -0.5px;
    font-family: KavyaBold, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
    font-size: 18px;
}

td, th {
   padding-top: 6px;
   padding-bottom: 6px;
   padding-left: 12px;
}

#priceTable {
   border-collapse: collapse;
   width: 100%;
   max-width: 700px;
   margin-left: auto;
   margin-right: auto;
   margin-bottom: 30px;
}

table#priceTable tr:nth-child(even) {
    background-color: rgb(240,240,240);
}

table#priceTable tr:nth-child(odd) {
    background-color: white;
}

img {
    text-align: center;
    width: 100%;
}

.nowrap {
    white-space: nowrap;
}

.kv-command-span {
    display: inline-block;
    border-style: solid;
    height: 26px;
    line-height: 1.4;
    border-width: 1px;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
}

/* Grid — replaces Foundation */
.grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

.grid--3col {
    grid-template-columns: 1fr;
}

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

@media (min-width: 640px) {
    .grid--3col { grid-template-columns: repeat(2, 1fr); }
    .grid--4col { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
    .grid--3col { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .grid--4col { grid-template-columns: repeat(4, 1fr); }
}

/* Screen Shots */
#screen-shot {
    background: url(main-view.png) no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    max-width: 957px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Grid */
#feature-section {
    padding-bottom: 70px;
}

#feature-section .cell {
    text-align: center;
    padding-bottom: 20px;
}

#feature-section .cell img {
    width: 69px;
    margin-bottom: 20px;
}

/* Dropdowns — accessible */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0px 16px 32px 0px rgba(0,0,0,0.2);
    padding: 10px 10px;
    z-index: 1;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
    font-size: 14px;
    text-align: left;
}

/* Feature icons — SVG inline */
.feature-icon {
    width: 69px;
    height: 69px;
    margin-bottom: 20px;
    display: inline-block;
    color: #333;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

/* Video poster */
video {
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Download button */
.download-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #000;
    color: #fff;
    font-family: KavyaBold, -apple-system, sans-serif;
    font-size: 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.download-btn:hover {
    background: rgba(191,0,0,0.85);
    color: #fff;
}

/* Hero */
.hero-section { text-align: center; }
.hero-icon { width: 100%; max-width: 180px; margin-bottom: 20px; border-radius: 22%; margin-top: 10px; }
.hero-title { margin-top: 0; }

/* Persona section — photos left, cards right */
.persona-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
}

.persona-photos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding-top: 16px;
    position: sticky;
    top: 40px;
}

.persona-hero {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.persona-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.persona-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.persona-card h3 {
    margin: 0 0 4px;
}

/* Persona icons */
.persona-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.persona-icon svg {
    width: 22px;
    height: 22px;
}

.persona-icon--writer    { background: #f0e6ff; color: #7c3aed; }
.persona-icon--blogger   { background: #fef3c7; color: #d97706; }
.persona-icon--student   { background: #dbeafe; color: #2563eb; }
.persona-icon--dev       { background: #fce7f3; color: #db2777; }
.persona-icon--knowledge { background: #f1f5f9; color: #475569; }
.persona-icon--journal   { background: #d1fae5; color: #059669; }

@media (max-width: 768px) {
    .persona-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .persona-photos {
        flex-direction: row;
        justify-content: center;
        position: static;
    }
    .persona-hero {
        width: 140px;
        height: 140px;
    }
}

/* Footer */
.footer-link { text-decoration: none; }
.footer-icon { width: 42px; vertical-align: middle; border-radius: 22%; }
.footer-name { font-size: 36px; line-height: 1.0; vertical-align: middle; }

/* Pricing helper */
.pricing-note {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-fine {
    margin-bottom: 60px;
    font-size: 15px;
    color: #888;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 42px; letter-spacing: -1px; }
    h2 { font-size: 24px; margin-bottom: 30px; }
    section { padding-top: 50px; padding-bottom: 50px; }

    /* Show dropdown content inline on mobile */
    .dropdown-content {
        display: block !important;
        position: static;
        box-shadow: none;
        font-size: 14px;
        text-align: left;
        padding: 5px 0 0 0;
    }

    #priceTable { font-size: 14px; }
    #priceTable td, #priceTable th { padding-left: 6px; padding-right: 6px; }
}
